diff --git a/README.md b/README.md index 7f0ed9ca513b9cc01277e3a84f8f52cb6171cc13..910642836eebcfc48e50c39812bdf44c0b853ed2 100644 --- a/README.md +++ b/README.md @@ -1,165 +1,60 @@ -DeePMD-kit Manual -======== -[![GitHub release](https://img.shields.io/github/release/deepmodeling/deepmd-kit.svg?maxAge=86400)](https://github.com/deepmodeling/deepmd-kit/releases) -[![doi:10.1016/j.cpc.2018.03.016](https://img.shields.io/badge/DOI-10.1016%2Fj.cpc.2018.03.016-blue)](https://doi.org/10.1016/j.cpc.2020.107206) -![Citations](https://citations.njzjz.win/10.1016/j.cpc.2018.03.016) -[![offline packages](https://img.shields.io/github/downloads/deepmodeling/deepmd-kit/total?label=offline%20packages)](https://github.com/deepmodeling/deepmd-kit/releases) -[![conda install](https://img.shields.io/badge/downloads-9k%20total-green.svg?style=round-square&label=conda%20install)](https://anaconda.org/deepmodeling/deepmd-kit) -[![pip install](https://img.shields.io/pypi/dm/deepmd-kit?label=pip%20install)](https://pypi.org/project/deepmd-kit) -[![docker pull](https://img.shields.io/docker/pulls/deepmodeling/deepmd-kit)](https://hub.docker.com/r/deepmodeling/deepmd-kit) -[![Documentation Status](https://readthedocs.org/projects/deepmd/badge/)](https://deepmd.readthedocs.io/) - -# Table of contents -- [About DeePMD-kit](#about-deepmd-kit) - - [Highlights in v2.0](#highlights-in-deepmd-kit-v2.0) - - [Highlighted features](#highlighted-features) - - [License and credits](#license-and-credits) - - [Deep Potential in a nutshell](#deep-potential-in-a-nutshell) -- [Download and install](#download-and-install) -- [Use DeePMD-kit](#use-deepmd-kit) -- [Code structure](#code-structure) -- [Troubleshooting](#troubleshooting) - -# About DeePMD-kit -DeePMD-kit is a package written in Python/C++, designed to minimize the effort required to build deep learning based model of interatomic potential energy and force field and to perform molecular dynamics (MD). This brings new hopes to addressing the accuracy-versus-efficiency dilemma in molecular simulations. Applications of DeePMD-kit span from finite molecules to extended systems and from metallic systems to chemically bonded systems. - -For more information, check the [documentation](https://deepmd.readthedocs.io/). - -# Highlights in DeePMD-kit v2.0 -* [Model compression](doc/freeze/compress.md). Accelerate the efficiency of model inference for 4-15 times. -* [New descriptors](doc/model/overall.md). Including [`se_e2_r`](doc/model/train-se-e2-r.md) and [`se_e3`](doc/model/train-se-e3.md). -* [Hybridization of descriptors](doc/model/train-hybrid.md). Hybrid descriptor constructed from concatenation of several descriptors. -* [Atom type embedding](doc/model/train-se-e2-a-tebd.md). Enable atom type embedding to decline training complexity and refine performance. -* Training and inference the dipole (vector) and polarizability (matrix). -* Split of training and validation dataset. -* Optimized training on GPUs. - -## Highlighted features -* **interfaced with TensorFlow**, one of the most popular deep learning frameworks, making the training process highly automatic and efficient, in addition Tensorboard can be used to visualize training procedure. -* **interfaced with high-performance classical MD and quantum (path-integral) MD packages**, i.e., LAMMPS and i-PI, respectively. -* **implements the Deep Potential series models**, which have been successfully applied to finite and extended systems including organic molecules, metals, semiconductors, and insulators, etc. -* **implements MPI and GPU supports**, makes it highly efficient for high performance parallel and distributed computing. -* **highly modularized**, easy to adapt to different descriptors for deep learning based potential energy models. - -## License and credits -The project DeePMD-kit is licensed under [GNU LGPLv3.0](./LICENSE). -If you use this code in any future publications, please cite this using -``Han Wang, Linfeng Zhang, Jiequn Han, and Weinan E. "DeePMD-kit: A deep learning package for many-body potential energy representation and molecular dynamics." Computer Physics Communications 228 (2018): 178-184.`` - -## Deep Potential in a nutshell -The goal of Deep Potential is to employ deep learning techniques and realize an inter-atomic potential energy model that is general, accurate, computationally efficient and scalable. The key component is to respect the extensive and symmetry-invariant properties of a potential energy model by assigning a local reference frame and a local environment to each atom. Each environment contains a finite number of atoms, whose local coordinates are arranged in a symmetry preserving way. These local coordinates are then transformed, through a sub-network, to a so-called *atomic energy*. Summing up all the atomic energies gives the potential energy of the system. - -The initial proof of concept is in the [Deep Potential][1] paper, which employed an approach that was devised to train the neural network model with the potential energy only. With typical *ab initio* molecular dynamics (AIMD) datasets this is insufficient to reproduce the trajectories. The Deep Potential Molecular Dynamics ([DeePMD][2]) model overcomes this limitation. In addition, the learning process in DeePMD improves significantly over the Deep Potential method thanks to the introduction of a flexible family of loss functions. The NN potential constructed in this way reproduces accurately the AIMD trajectories, both classical and quantum (path integral), in extended and finite systems, at a cost that scales linearly with system size and is always several orders of magnitude lower than that of equivalent AIMD simulations. - -Although being highly efficient, the original Deep Potential model satisfies the extensive and symmetry-invariant properties of a potential energy model at the price of introducing discontinuities in the model. This has negligible influence on a trajectory from canonical sampling but might not be sufficient for calculations of dynamical and mechanical properties. These points motivated us to develop the Deep Potential-Smooth Edition ([DeepPot-SE][3]) model, which replaces the non-smooth local frame with a smooth and adaptive embedding network. DeepPot-SE shows great ability in modeling many kinds of systems that are of interests in the fields of physics, chemistry, biology, and materials science. - -In addition to building up potential energy models, DeePMD-kit can also be used to build up coarse-grained models. In these models, the quantity that we want to parameterize is the free energy, or the coarse-grained potential, of the coarse-grained particles. See the [DeePCG paper][4] for more details. - -# Download and install - -Please follow our [GitHub](https://github.com/deepmodeling/deepmd-kit) webpage to download the [latest released version](https://github.com/deepmodeling/deepmd-kit/tree/master) and [development version](https://github.com/deepmodeling/deepmd-kit/tree/devel). - -DeePMD-kit offers multiple installation methods. It is recommend using easily methods like [offline packages](doc/install/easy-install.md#offline-packages), [conda](doc/install/easy-install.md#with-conda) and [docker](doc/install/easy-install.md#with-docker). - -One may manually install DeePMD-kit by following the instuctions on [installing the Python interface](doc/install/install-from-source.md#install-the-python-interface) and [installing the C++ interface](doc/install/install-from-source.md#install-the-c-interface). The C++ interface is necessary when using DeePMD-kit with LAMMPS, i-PI or GROMACS. - - -# Use DeePMD-kit - -A quick-start on using DeePMD-kit can be found as follows: - -- [Prepare data with dpdata](doc/data/dpdata.md) -- [Training a model](doc/train/training.md) -- [Freeze a model](doc/freeze/freeze.md) -- [Test a model](doc/test/test.md) -- [Run MD with LAMMPS](doc/third-party/lammps.md) - -A full [document](doc/train/train-input-auto.rst) on options in the training input script is available. - -# Advanced - -- [Installation](doc/install/index.md) - - [Easy install](doc/install/easy-install.md) - - [Install from source code](doc/install/install-from-source.md) - - [Install LAMMPS](doc/install/install-lammps.md) - - [Install i-PI](doc/install/install-ipi.md) - - [Install GROMACS](doc/install/install-gromacs.md) - - [Building conda packages](doc/install/build-conda.md) -- [Data](doc/data/index.md) - - [System](doc/data/system.md) - - [Formats of a system](doc/data/data-conv.md) - - [Prepare data with dpdata](doc/data/dpdata.md) -- [Model](doc/model/index.md) - - [Overall](doc/model/overall.md) - - [Descriptor `"se_e2_a"`](doc/model/train-se-e2-a.md) - - [Descriptor `"se_e2_r"`](doc/model/train-se-e2-r.md) - - [Descriptor `"se_e3"`](doc/model/train-se-e3.md) - - [Descriptor `"se_atten"`](doc/model/train-se-atten.md) - - [Descriptor `"hybrid"`](doc/model/train-hybrid.md) - - [Descriptor `sel`](doc/model/sel.md) - - [Fit energy](doc/model/train-energy.md) - - [Fit `tensor` like `Dipole` and `Polarizability`](doc/model/train-fitting-tensor.md) - - [Train a Deep Potential model using `type embedding` approach](doc/model/train-se-e2-a-tebd.md) - - [Deep potential long-range](doc/model/dplr.md) - - [Deep Potential - Range Correction (DPRc)](doc/model/dprc.md) -- [Training](doc/train/index.md) - - [Training a model](doc/train/training.md) - - [Advanced options](doc/train/training-advanced.md) - - [Parallel training](doc/train/parallel-training.md) - - [TensorBoard Usage](doc/train/tensorboard.md) - - [Known limitations of using GPUs](doc/train/gpu-limitations.md) - - [Training Parameters](doc/train/train-input-auto.rst) -- [Freeze and Compress](doc/freeze/index.rst) - - [Freeze a model](doc/freeze/freeze.md) - - [Compress a model](doc/freeze/compress.md) -- [Test](doc/test/index.rst) - - [Test a model](doc/test/test.md) - - [Calculate Model Deviation](doc/test/model-deviation.md) -- [Inference](doc/inference/index.rst) - - [Python interface](doc/inference/python.md) - - [C++ interface](doc/inference/cxx.md) -- [Integrate with third-party packages](doc/third-party/index.rst) - - [Use deep potential with ASE](doc/third-party/ase.md) - - [Run MD with LAMMPS](doc/third-party/lammps.md) - - [LAMMPS commands](doc/third-party/lammps-command.md) - - [Run path-integral MD with i-PI](doc/third-party/ipi.md) - - [Run MD with GROMACS](doc/third-party/gromacs.md) - - [Interfaces out of DeePMD-kit](doc/third-party/out-of-deepmd-kit.md) -- [Use NVNMD](doc/nvnmd/index.md) - -# Code structure - -The code is organized as follows: - -* `data/raw`: tools manipulating the raw data files. -* `examples`: examples. -* `deepmd`: DeePMD-kit python modules. -* `source/api_cc`: source code of DeePMD-kit C++ API. -* `source/ipi`: source code of i-PI client. -* `source/lib`: source code of DeePMD-kit library. -* `source/lmp`: source code of Lammps module. -* `source/gmx`: source code of Gromacs plugin. -* `source/op`: tensorflow op implementation. working with library. - - -# Troubleshooting - -- [Model compatibility](doc/troubleshooting/model_compatability.md) -- [Installation](doc/troubleshooting/installation.md) -- [The temperature undulates violently during early stages of MD](doc/troubleshooting/md_energy_undulation.md) -- [MD: cannot run LAMMPS after installing a new version of DeePMD-kit](doc/troubleshooting/md_version_compatibility.md) -- [Do we need to set rcut < half boxsize?](doc/troubleshooting/howtoset_rcut.md) -- [How to set sel?](doc/troubleshooting/howtoset_sel.md) -- [How to control the number of nodes used by a job?](doc/troubleshooting/howtoset_num_nodes.md) -- [How to tune Fitting/embedding-net size?](doc/troubleshooting/howtoset_netsize.md) - - -# Contributing - -See [DeePMD-kit Contributing Guide](CONTRIBUTING.md) to become a contributor! 🤓 - - -[1]: https://arxiv.org/abs/1707.01478 -[2]: https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.143001 -[3]: https://arxiv.org/abs/1805.09003 -[4]: https://aip.scitation.org/doi/full/10.1063/1.5027645 +# DeePMD-kit(Deep Potential Molecular Dynamics) +## 模型介绍 +DeePMD-kit是深度势能分子动力学的开源项目。分子动力学是一套分子模拟方法,该方法主要依靠牛顿力学来模拟分子体系的运动。分子动力学在微观世界模拟中起着承载作用,在物理、化学、生物、材料科学以及力学等领域都有着非常重要的应用。 + +深势科技成功将DeePMD-kit进行了并行化,首次实现了具有AIMD精度的第一性原理分子动力学模拟的商业与原子规模的应用,为分子动力学提供了革命性的高性能解决方案。 + +## 模型结构 + +DeePMD-Kit,参考https://docs.deepmodeling.com/projects/deepmd/en/master/index.html + +## DeePMD代码参考版本 + +版本:v2.1.5 + +原始代码位置:https://github.com/deepmodeling/deepmd-kit + +## 数据集 +示例中验证的数据集来自: + +wget http://pai-blade.oss-accelerate.aliyuncs.com/bladedisc_notebook_binaries/data/disc_deepmd_example/data.tar.gz +tar -xvf data.tar.gz +实际业务测试请选择合适的数据集进行测试。 + +## 训练 + +### 环境配置 +提供[光源](https://www.sourcefind.cn/#/service-details)拉取的训练的docker镜像: +* 训练镜像: + +python依赖安装: + + pip3 install -r requirement.txt + +### 安装 + +export ROCM_ROOT=/opt/dtk-22.04.2 +DP_VARIANT=rocm python3 -m pip install . -i https://pypi.tuna.tsinghua.edu.cn/simple --trusted-host pypi.tuna.tsinghua.edu.cn + +### 单卡测试 + +使用BladeDISC加速的测试命令(此处以单机单卡规模为例说明),请根据实际使用的卡id号调整run.sh中指定的卡号: + + bash run.sh +如果需要关闭BladeDISC加速,需要注释掉main.py文件中的如下内容: + disc.enable() + +### 性能和准确率数据 + +| case | 优化前(关闭disc) | 优化后(打开disc) | 性能提升 | +| :---- | ----: | :----: | ---- | +water | 3.1s | 2.7s | 12.9% + GeTe_2_body描述符| 4.06s | 2.67s | 34.2% +| GeTe_hybrid描述符 | 18.5s | 17.8s | 3.7% | + +准确率通过对比优化前与优化后的输出文件lcurve.out输出趋势一致进行确认; + + +## 参考 +* https://github.com/deepmodeling/deepmd-kit + diff --git a/README_deepmd.md b/README_deepmd.md new file mode 100644 index 0000000000000000000000000000000000000000..7f0ed9ca513b9cc01277e3a84f8f52cb6171cc13 --- /dev/null +++ b/README_deepmd.md @@ -0,0 +1,165 @@ +DeePMD-kit Manual +======== +[![GitHub release](https://img.shields.io/github/release/deepmodeling/deepmd-kit.svg?maxAge=86400)](https://github.com/deepmodeling/deepmd-kit/releases) +[![doi:10.1016/j.cpc.2018.03.016](https://img.shields.io/badge/DOI-10.1016%2Fj.cpc.2018.03.016-blue)](https://doi.org/10.1016/j.cpc.2020.107206) +![Citations](https://citations.njzjz.win/10.1016/j.cpc.2018.03.016) +[![offline packages](https://img.shields.io/github/downloads/deepmodeling/deepmd-kit/total?label=offline%20packages)](https://github.com/deepmodeling/deepmd-kit/releases) +[![conda install](https://img.shields.io/badge/downloads-9k%20total-green.svg?style=round-square&label=conda%20install)](https://anaconda.org/deepmodeling/deepmd-kit) +[![pip install](https://img.shields.io/pypi/dm/deepmd-kit?label=pip%20install)](https://pypi.org/project/deepmd-kit) +[![docker pull](https://img.shields.io/docker/pulls/deepmodeling/deepmd-kit)](https://hub.docker.com/r/deepmodeling/deepmd-kit) +[![Documentation Status](https://readthedocs.org/projects/deepmd/badge/)](https://deepmd.readthedocs.io/) + +# Table of contents +- [About DeePMD-kit](#about-deepmd-kit) + - [Highlights in v2.0](#highlights-in-deepmd-kit-v2.0) + - [Highlighted features](#highlighted-features) + - [License and credits](#license-and-credits) + - [Deep Potential in a nutshell](#deep-potential-in-a-nutshell) +- [Download and install](#download-and-install) +- [Use DeePMD-kit](#use-deepmd-kit) +- [Code structure](#code-structure) +- [Troubleshooting](#troubleshooting) + +# About DeePMD-kit +DeePMD-kit is a package written in Python/C++, designed to minimize the effort required to build deep learning based model of interatomic potential energy and force field and to perform molecular dynamics (MD). This brings new hopes to addressing the accuracy-versus-efficiency dilemma in molecular simulations. Applications of DeePMD-kit span from finite molecules to extended systems and from metallic systems to chemically bonded systems. + +For more information, check the [documentation](https://deepmd.readthedocs.io/). + +# Highlights in DeePMD-kit v2.0 +* [Model compression](doc/freeze/compress.md). Accelerate the efficiency of model inference for 4-15 times. +* [New descriptors](doc/model/overall.md). Including [`se_e2_r`](doc/model/train-se-e2-r.md) and [`se_e3`](doc/model/train-se-e3.md). +* [Hybridization of descriptors](doc/model/train-hybrid.md). Hybrid descriptor constructed from concatenation of several descriptors. +* [Atom type embedding](doc/model/train-se-e2-a-tebd.md). Enable atom type embedding to decline training complexity and refine performance. +* Training and inference the dipole (vector) and polarizability (matrix). +* Split of training and validation dataset. +* Optimized training on GPUs. + +## Highlighted features +* **interfaced with TensorFlow**, one of the most popular deep learning frameworks, making the training process highly automatic and efficient, in addition Tensorboard can be used to visualize training procedure. +* **interfaced with high-performance classical MD and quantum (path-integral) MD packages**, i.e., LAMMPS and i-PI, respectively. +* **implements the Deep Potential series models**, which have been successfully applied to finite and extended systems including organic molecules, metals, semiconductors, and insulators, etc. +* **implements MPI and GPU supports**, makes it highly efficient for high performance parallel and distributed computing. +* **highly modularized**, easy to adapt to different descriptors for deep learning based potential energy models. + +## License and credits +The project DeePMD-kit is licensed under [GNU LGPLv3.0](./LICENSE). +If you use this code in any future publications, please cite this using +``Han Wang, Linfeng Zhang, Jiequn Han, and Weinan E. "DeePMD-kit: A deep learning package for many-body potential energy representation and molecular dynamics." Computer Physics Communications 228 (2018): 178-184.`` + +## Deep Potential in a nutshell +The goal of Deep Potential is to employ deep learning techniques and realize an inter-atomic potential energy model that is general, accurate, computationally efficient and scalable. The key component is to respect the extensive and symmetry-invariant properties of a potential energy model by assigning a local reference frame and a local environment to each atom. Each environment contains a finite number of atoms, whose local coordinates are arranged in a symmetry preserving way. These local coordinates are then transformed, through a sub-network, to a so-called *atomic energy*. Summing up all the atomic energies gives the potential energy of the system. + +The initial proof of concept is in the [Deep Potential][1] paper, which employed an approach that was devised to train the neural network model with the potential energy only. With typical *ab initio* molecular dynamics (AIMD) datasets this is insufficient to reproduce the trajectories. The Deep Potential Molecular Dynamics ([DeePMD][2]) model overcomes this limitation. In addition, the learning process in DeePMD improves significantly over the Deep Potential method thanks to the introduction of a flexible family of loss functions. The NN potential constructed in this way reproduces accurately the AIMD trajectories, both classical and quantum (path integral), in extended and finite systems, at a cost that scales linearly with system size and is always several orders of magnitude lower than that of equivalent AIMD simulations. + +Although being highly efficient, the original Deep Potential model satisfies the extensive and symmetry-invariant properties of a potential energy model at the price of introducing discontinuities in the model. This has negligible influence on a trajectory from canonical sampling but might not be sufficient for calculations of dynamical and mechanical properties. These points motivated us to develop the Deep Potential-Smooth Edition ([DeepPot-SE][3]) model, which replaces the non-smooth local frame with a smooth and adaptive embedding network. DeepPot-SE shows great ability in modeling many kinds of systems that are of interests in the fields of physics, chemistry, biology, and materials science. + +In addition to building up potential energy models, DeePMD-kit can also be used to build up coarse-grained models. In these models, the quantity that we want to parameterize is the free energy, or the coarse-grained potential, of the coarse-grained particles. See the [DeePCG paper][4] for more details. + +# Download and install + +Please follow our [GitHub](https://github.com/deepmodeling/deepmd-kit) webpage to download the [latest released version](https://github.com/deepmodeling/deepmd-kit/tree/master) and [development version](https://github.com/deepmodeling/deepmd-kit/tree/devel). + +DeePMD-kit offers multiple installation methods. It is recommend using easily methods like [offline packages](doc/install/easy-install.md#offline-packages), [conda](doc/install/easy-install.md#with-conda) and [docker](doc/install/easy-install.md#with-docker). + +One may manually install DeePMD-kit by following the instuctions on [installing the Python interface](doc/install/install-from-source.md#install-the-python-interface) and [installing the C++ interface](doc/install/install-from-source.md#install-the-c-interface). The C++ interface is necessary when using DeePMD-kit with LAMMPS, i-PI or GROMACS. + + +# Use DeePMD-kit + +A quick-start on using DeePMD-kit can be found as follows: + +- [Prepare data with dpdata](doc/data/dpdata.md) +- [Training a model](doc/train/training.md) +- [Freeze a model](doc/freeze/freeze.md) +- [Test a model](doc/test/test.md) +- [Run MD with LAMMPS](doc/third-party/lammps.md) + +A full [document](doc/train/train-input-auto.rst) on options in the training input script is available. + +# Advanced + +- [Installation](doc/install/index.md) + - [Easy install](doc/install/easy-install.md) + - [Install from source code](doc/install/install-from-source.md) + - [Install LAMMPS](doc/install/install-lammps.md) + - [Install i-PI](doc/install/install-ipi.md) + - [Install GROMACS](doc/install/install-gromacs.md) + - [Building conda packages](doc/install/build-conda.md) +- [Data](doc/data/index.md) + - [System](doc/data/system.md) + - [Formats of a system](doc/data/data-conv.md) + - [Prepare data with dpdata](doc/data/dpdata.md) +- [Model](doc/model/index.md) + - [Overall](doc/model/overall.md) + - [Descriptor `"se_e2_a"`](doc/model/train-se-e2-a.md) + - [Descriptor `"se_e2_r"`](doc/model/train-se-e2-r.md) + - [Descriptor `"se_e3"`](doc/model/train-se-e3.md) + - [Descriptor `"se_atten"`](doc/model/train-se-atten.md) + - [Descriptor `"hybrid"`](doc/model/train-hybrid.md) + - [Descriptor `sel`](doc/model/sel.md) + - [Fit energy](doc/model/train-energy.md) + - [Fit `tensor` like `Dipole` and `Polarizability`](doc/model/train-fitting-tensor.md) + - [Train a Deep Potential model using `type embedding` approach](doc/model/train-se-e2-a-tebd.md) + - [Deep potential long-range](doc/model/dplr.md) + - [Deep Potential - Range Correction (DPRc)](doc/model/dprc.md) +- [Training](doc/train/index.md) + - [Training a model](doc/train/training.md) + - [Advanced options](doc/train/training-advanced.md) + - [Parallel training](doc/train/parallel-training.md) + - [TensorBoard Usage](doc/train/tensorboard.md) + - [Known limitations of using GPUs](doc/train/gpu-limitations.md) + - [Training Parameters](doc/train/train-input-auto.rst) +- [Freeze and Compress](doc/freeze/index.rst) + - [Freeze a model](doc/freeze/freeze.md) + - [Compress a model](doc/freeze/compress.md) +- [Test](doc/test/index.rst) + - [Test a model](doc/test/test.md) + - [Calculate Model Deviation](doc/test/model-deviation.md) +- [Inference](doc/inference/index.rst) + - [Python interface](doc/inference/python.md) + - [C++ interface](doc/inference/cxx.md) +- [Integrate with third-party packages](doc/third-party/index.rst) + - [Use deep potential with ASE](doc/third-party/ase.md) + - [Run MD with LAMMPS](doc/third-party/lammps.md) + - [LAMMPS commands](doc/third-party/lammps-command.md) + - [Run path-integral MD with i-PI](doc/third-party/ipi.md) + - [Run MD with GROMACS](doc/third-party/gromacs.md) + - [Interfaces out of DeePMD-kit](doc/third-party/out-of-deepmd-kit.md) +- [Use NVNMD](doc/nvnmd/index.md) + +# Code structure + +The code is organized as follows: + +* `data/raw`: tools manipulating the raw data files. +* `examples`: examples. +* `deepmd`: DeePMD-kit python modules. +* `source/api_cc`: source code of DeePMD-kit C++ API. +* `source/ipi`: source code of i-PI client. +* `source/lib`: source code of DeePMD-kit library. +* `source/lmp`: source code of Lammps module. +* `source/gmx`: source code of Gromacs plugin. +* `source/op`: tensorflow op implementation. working with library. + + +# Troubleshooting + +- [Model compatibility](doc/troubleshooting/model_compatability.md) +- [Installation](doc/troubleshooting/installation.md) +- [The temperature undulates violently during early stages of MD](doc/troubleshooting/md_energy_undulation.md) +- [MD: cannot run LAMMPS after installing a new version of DeePMD-kit](doc/troubleshooting/md_version_compatibility.md) +- [Do we need to set rcut < half boxsize?](doc/troubleshooting/howtoset_rcut.md) +- [How to set sel?](doc/troubleshooting/howtoset_sel.md) +- [How to control the number of nodes used by a job?](doc/troubleshooting/howtoset_num_nodes.md) +- [How to tune Fitting/embedding-net size?](doc/troubleshooting/howtoset_netsize.md) + + +# Contributing + +See [DeePMD-kit Contributing Guide](CONTRIBUTING.md) to become a contributor! 🤓 + + +[1]: https://arxiv.org/abs/1707.01478 +[2]: https://journals.aps.org/prl/abstract/10.1103/PhysRevLett.120.143001 +[3]: https://arxiv.org/abs/1805.09003 +[4]: https://aip.scitation.org/doi/full/10.1063/1.5027645 diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/.ninja_deps b/_skbuild/linux-x86_64-3.6/cmake-build/.ninja_deps deleted file mode 100644 index f980e6c17e7863ac2454b37fa7da193f2df4e036..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/.ninja_deps and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/.ninja_log b/_skbuild/linux-x86_64-3.6/cmake-build/.ninja_log deleted file mode 100644 index 7d98e5dd742cce561947fc1afa0a1e0c9757543b..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/.ninja_log +++ /dev/null @@ -1,130 +0,0 @@ -# ninja log v5 -95 6803 1678676633510414156 op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o 525dcac79cc0478f -90 6642 1678676633350414160 op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o 1a165824bbe04012 -2844 3278 1678676629968414238 lib/libdeepmd.so 9a286342570bf237 -90 7146 1678676633850414149 op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o 5ced4a05b5cb2556 -102 8722 1678676635425414112 op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o 8bd468a591a7e9d4 -106 2843 1678676629545414248 lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o df42835fc42a0f50 -96 1555 1678676628260414278 op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o 4e6e556b0ed0c96a -88 10588 1678676637269414069 op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o fcffb538ce6c581a -104 1975 1678676628673414268 lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o f2779120c7b2ed9 -108 836 1678676627544414295 lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o ab721da8cab8c358 -106 1858 1678676628566414271 lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o 7b167e50d5a8d0bb -102 1737 1678676628441414274 lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o c21d7bc48597dbd3 -92 8656 1678676635365414113 op/CMakeFiles/op_abi.dir/prod_force.cc.o b0354c53d2e22950 -89 7193 1678676633901414147 op/CMakeFiles/op_abi.dir/map_aparam.cc.o da75004874cf2b21 -103 1519 1678676628226414279 lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o 17d94258452659f -107 1416 1678676628121414281 lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o 18f05d83c7bdb8b -103 1273 1678676627979414284 lib/CMakeFiles/deepmd.dir/src/coord.cc.o 92fce5c6dc718558 -111 711 1678676627420414297 lib/CMakeFiles/deepmd.dir/src/utilities.cc.o 23b2230cce53be82 -109 656 1678676627364414299 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o a7824694e232daa3 -98 6957 1678676633665414153 op/CMakeFiles/op_grads.dir/custom_op.cc.o 57ac1f173e973a0b -105 341 1678676627049414306 lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o b42fc32d68f6d9ca -97 2922 1678676629628414246 op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o 99441888ad88f1c7 -111 1731 1678676628428414274 lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o d89fca15848607b1 -104 745 1678676627454414297 lib/CMakeFiles/deepmd.dir/src/gelu.cc.o f50516c36b3363e4 -98 7914 1678676634614414131 op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o 365db87808ef488a -17 2964 1678689318431225820 build.ninja e02e09dc2f8644f1 -110 302 1678676627009414307 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o 9aec7b1346eabee5 -108 816 1678676627524414295 lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o fcd48443e5ca91e9 -86 6876 1678676633584414155 op/CMakeFiles/op_abi.dir/custom_op.cc.o 33b52205cf522b26 -100 7712 1678676634419414135 op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o c0517d6bd10b493a -91 9153 1678676635861414102 op/CMakeFiles/op_abi.dir/pair_tab.cc.o 64a92556284adaa1 -92 9182 1678676635891414101 op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o 6a7d52f514ad6baf -93 8310 1678676635015414122 op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o 9f7975ac7c8754f5 -91 9213 1678676635912414101 op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o a7ebbdbc62f7b348 -87 11243 1678676637951414054 op/CMakeFiles/op_abi.dir/descrpt.cc.o 34205c91d3f74d01 -90 9306 1678676636015414098 op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o db2709bc1efc2d17 -11287 11803 1678676638499414041 op/libop_abi.so 1c34253dcc63de09 -99 8397 1678676635105414119 op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o 76af5ae76041e16 -94 8267 1678676634975414122 op/CMakeFiles/op_abi.dir/soft_min.cc.o e7e6af178c38993b -108 932 1678676627641414292 lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o 81d564f40389faa7 -97 11286 1678676637994414053 op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o 49eaab1714336b5a -96 9332 1678676636040414098 op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o f1aedcf66e7647e8 -11803 12438 0 CMakeFiles/install.util de476d5b443f4baf -110 741 1678676627449414297 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o 938f25451d30447 -93 7237 1678676633944414146 op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o 8a095b21c3959cbd -10248 10595 1678676637298414069 op/libop_grads.so bbf34e07bf15b334 -87 10438 1678676637146414072 op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o fe6a517b1d3d8055 -94 7626 1678676634333414137 op/CMakeFiles/op_abi.dir/soft_min_force.cc.o 6cdd2b657bde11be -89 7621 1678676634316414138 op/CMakeFiles/op_abi.dir/ewald_recp.cc.o 2714dd591495456a -95 7484 1678676634192414141 op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o b7e84fa44f93891b -103 967 1678676627674414292 lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o eb66df14a79c1ff5 -109 942 1678676627650414292 lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o 4e2136012546788d -104 1757 1678676628463414273 lib/CMakeFiles/deepmd.dir/src/ewald.cc.o 7f34eb31a113daff -89 7233 1678676633939414146 op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o 8775588b3f21636a -93 8802 1678676635510414110 op/CMakeFiles/op_abi.dir/prod_virial.cc.o 5309c70111894c86 -106 1229 1678676627936414285 lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o 8ef32e335d04766 -99 10247 1678676636952414077 op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o 95615e0013c3c6de -98 8564 1678676635267414116 op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o 221cc17dbc5dfe55 -109 856 1678676627565414294 lib/CMakeFiles/deepmd.dir/src/region.cc.o 1c5c3a9a9e5931e9 -94 8584 1678676635292414115 op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o e9495df76c993779 -110 777 1678676627486414296 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o e8ac298b1d97fde0 -107 844 1678676627553414294 lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o f6601f1f5b7a01e8 -91 9995 1678676636702414082 op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o 6e3c42a4a6cb5733 -88 10354 1678676637061414074 op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o f478c7c06ed14ab7 -95 9150 1678676635851414102 op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o 82ecc75bbb37f54d -28 144 1678689318603226429 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o 6b9ca3b69b79dd3 -21 155 1678689318614226468 lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o 84aaa5d4be6f4682 -26 573 1678689319032227946 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o 5c31dd814aad3140 -27 620 1678689319079228112 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o 678944be5019cc58 -24 638 1678689319097228176 lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o 5b26d8904a28f7ae -20 687 1678689319147228353 lib/CMakeFiles/deepmd.dir/src/gelu.cc.o 34f48b243408a38b -26 695 1678689319155228381 lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o 9f60492954d289a2 -25 699 1678689319159228395 lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o 35f17d87c77a1f9d -27 705 1678689319165228417 lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o f665f4abe9d7654d -25 718 1678689319178228463 lib/CMakeFiles/deepmd.dir/src/region.cc.o 66cb9ba19ef896e -29 732 1678689319192228512 lib/CMakeFiles/deepmd.dir/src/utilities.cc.o f20ce034e643373d -24 783 1678689319243228692 lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o 4db59fa2b62eda2d -24 890 1678689319349229067 lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o 1c5a916288dab940 -19 980 1678689319439229386 lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o c2a0593a2dd7f00a -18 1039 1678689319498229594 lib/CMakeFiles/deepmd.dir/src/coord.cc.o 94bc9408021991cc -22 1062 1678689319521229676 lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o f2ae9e8d2d09f91a -28 1197 1678689319656230154 lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o 31c9c1d6c6e40494 -23 1205 1678689319665230185 lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o 13ce43eaa1c4209 -18 1468 1678689319927231112 lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o 114da57f8790bc48 -20 1588 1678689320047231536 lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o 3024198b8db691fc -12 1595 1678689320055231565 op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o 9714b2d629b47639 -18 1629 1678689320088231682 lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o 957764d42cb3331f -22 1722 1678689320181232010 lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o f72455783e55ad5d -19 1811 1678689320271232329 lib/CMakeFiles/deepmd.dir/src/ewald.cc.o bef1a9f304822dcf -21 2362 1678689320822234278 lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o af1263e3a86a8780 -2362 2495 1678689320954234744 lib/libdeepmd.so 9a286342570bf237 -14 2539 1678689320998234900 op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o 572da5ba858f92 -15 5397 1678689323856245009 op/CMakeFiles/op_grads.dir/custom_op.cc.o cf888dac68243791 -11 5926 1678689324385246880 op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o 709ca6f2496116b9 -4 6086 1678689324545247446 op/CMakeFiles/op_abi.dir/custom_op.cc.o 3fbf7f73a8fabd1b -9 6148 1678689324608247669 op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o f0358b08dc59f3af -6 6223 1678689324682247931 op/CMakeFiles/op_abi.dir/map_aparam.cc.o 921016de902d09c2 -10 6339 1678689324798248341 op/CMakeFiles/op_abi.dir/soft_min_force.cc.o af746e6fd6b4ebf9 -6 6357 1678689324816248405 op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o 92bb69c26c3f76f -6 6438 1678689324897248692 op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o 7dcbc4de2354fa52 -10 6511 1678689324970248950 op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o 71191778f8c9043b -11 6525 1678689324984248999 op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o ec68fa8fcfa327c7 -15 6547 1678689325006249077 op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o 25d3dbca20e39133 -5 6579 1678689325039249194 op/CMakeFiles/op_abi.dir/ewald_recp.cc.o 5ec3252035a4a95a -17 6594 1678689325053249243 op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o 141cfaf1a5c2f096 -8 6962 1678689325422250548 op/CMakeFiles/op_abi.dir/prod_force.cc.o 7f44623f6fa93395 -6 6992 1678689325451250651 op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o 2a0029967b75137 -17 7181 1678689325641251323 op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o 75e3213d2939f91c -9 7268 1678689325727251627 op/CMakeFiles/op_abi.dir/prod_virial.cc.o f69df472e8db88fa -16 7353 1678689325812251928 op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o 643cd91e769385bf -10 7456 1678689325915252292 op/CMakeFiles/op_abi.dir/soft_min.cc.o 575837efa7237061 -9 7663 1678689326122253024 op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o 3438a31fbdec9d3b -16 7702 1678689326161253162 op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o 3881af0ab874cf7e -11 7733 1678689326192253272 op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o b51145af720c3196 -7 7892 1678689326352253838 op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o 629d22efc515ba39 -8 7904 1678689326363253877 op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o 3150b57029610db2 -8 7942 1678689326402254014 op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o eb5ff907f8346c6b -7 8084 1678689326543254513 op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o 609f868b29b9bc17 -17 8105 1678689326564254587 op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o 4e81acc1684cac42 -4 8144 1678689326603254726 op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o 4a6bb84b369ab844 -7 8398 1678689326857255624 op/CMakeFiles/op_abi.dir/pair_tab.cc.o 3c30e0f6e692bed9 -8105 8460 1678689326917255836 op/libop_grads.so 9c28f205edaa0bf2 -12 8801 1678689327261257053 op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o d331991013845f88 -4 8934 1678689327394257523 op/CMakeFiles/op_abi.dir/descrpt.cc.o 5b89b289371169d4 -5 8946 1678689327406257566 op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o 1901bc0e26f860ae -5 9036 1678689327495257881 op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o 7d9a296f65750bd8 -15 10467 1678689328927262946 op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o 741f1f55a3b86bf4 -10467 10796 1678689329254264102 op/libop_abi.so 122f13be958a9d0d -10796 10812 0 CMakeFiles/install.util 83522685fff3c70e diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeCache.txt b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeCache.txt deleted file mode 100644 index e3fd76b7f7b5f0711d17dc842d86cd7d0dffb57e..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeCache.txt +++ /dev/null @@ -1,498 +0,0 @@ -# This is the CMakeCache file. -# For build in directory: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build -# It was generated by CMake: /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -# You can edit this file to change values found and used by cmake. -# If you do not want to change any of the values, simply exit the editor. -# If you do want to change a value, simply edit, save, and exit the editor. -# The syntax for the file is as follows: -# KEY:TYPE=VALUE -# KEY is the name of a variable in the cache. -# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!. -# VALUE is the current value for the KEY. - -######################## -# EXTERNAL cache entries -######################## - -//No help, variable specified on the command line. -BUILD_CPP_IF:BOOL=FALSE - -//No help, variable specified on the command line. -BUILD_PY_IF:BOOL=TRUE - -//Path to a program. -CMAKE_ADDR2LINE:FILEPATH=/usr/bin/addr2line - -//Path to a program. -CMAKE_AR:FILEPATH=/usr/bin/ar - -//No help, variable specified on the command line. -CMAKE_BUILD_TYPE:STRING=Release - -//CXX compiler -CMAKE_CXX_COMPILER:FILEPATH=/usr/bin/c++ - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_CXX_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 - -//Flags used by the CXX compiler during all build types. -CMAKE_CXX_FLAGS:STRING= - -//Flags used by the CXX compiler during DEBUG builds. -CMAKE_CXX_FLAGS_DEBUG:STRING=-g - -//Flags used by the CXX compiler during MINSIZEREL builds. -CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the CXX compiler during RELEASE builds. -CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the CXX compiler during RELWITHDEBINFO builds. -CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//C compiler -CMAKE_C_COMPILER:FILEPATH=/usr/bin/cc - -//A wrapper around 'ar' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_AR:FILEPATH=/usr/bin/gcc-ar-7 - -//A wrapper around 'ranlib' adding the appropriate '--plugin' option -// for the GCC compiler -CMAKE_C_COMPILER_RANLIB:FILEPATH=/usr/bin/gcc-ranlib-7 - -//Flags used by the C compiler during all build types. -CMAKE_C_FLAGS:STRING= - -//Flags used by the C compiler during DEBUG builds. -CMAKE_C_FLAGS_DEBUG:STRING=-g - -//Flags used by the C compiler during MINSIZEREL builds. -CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG - -//Flags used by the C compiler during RELEASE builds. -CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG - -//Flags used by the C compiler during RELWITHDEBINFO builds. -CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG - -//Path to a program. -CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND - -//Flags used by the linker during all build types. -CMAKE_EXE_LINKER_FLAGS:STRING= - -//Flags used by the linker during DEBUG builds. -CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during MINSIZEREL builds. -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during RELEASE builds. -CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during RELWITHDEBINFO builds. -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Enable/Disable output of compile commands during generation. -CMAKE_EXPORT_COMPILE_COMMANDS:BOOL= - -//Value Computed by CMake. -CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/pkgRedirects - -//No help, variable specified on the command line. -CMAKE_INSTALL_PREFIX:PATH=/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install - -//Path to a program. -CMAKE_LINKER:FILEPATH=/usr/bin/ld - -//No help, variable specified on the command line. -CMAKE_MAKE_PROGRAM:FILEPATH=/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja - -//Flags used by the linker during the creation of modules during -// all build types. -CMAKE_MODULE_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of modules during -// DEBUG builds. -CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of modules during -// MINSIZEREL builds. -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of modules during -// RELEASE builds. -CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of modules during -// RELWITHDEBINFO builds. -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//No help, variable specified on the command line. -CMAKE_MODULE_PATH:PATH=/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/skbuild/resources/cmake - -//Path to a program. -CMAKE_NM:FILEPATH=/usr/bin/nm - -//Path to a program. -CMAKE_OBJCOPY:FILEPATH=/usr/bin/objcopy - -//Path to a program. -CMAKE_OBJDUMP:FILEPATH=/usr/bin/objdump - -//Value Computed by CMake -CMAKE_PROJECT_DESCRIPTION:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_HOMEPAGE_URL:STATIC= - -//Value Computed by CMake -CMAKE_PROJECT_NAME:STATIC=DeePMD - -//Path to a program. -CMAKE_RANLIB:FILEPATH=/usr/bin/ranlib - -//Path to a program. -CMAKE_READELF:FILEPATH=/usr/bin/readelf - -//Flags used by the linker during the creation of shared libraries -// during all build types. -CMAKE_SHARED_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of shared libraries -// during DEBUG builds. -CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of shared libraries -// during MINSIZEREL builds. -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELEASE builds. -CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of shared libraries -// during RELWITHDEBINFO builds. -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//If set, runtime paths are not added when installing shared libraries, -// but are added when building. -CMAKE_SKIP_INSTALL_RPATH:BOOL=NO - -//If set, runtime paths are not added when using shared libraries. -CMAKE_SKIP_RPATH:BOOL=NO - -//Flags used by the linker during the creation of static libraries -// during all build types. -CMAKE_STATIC_LINKER_FLAGS:STRING= - -//Flags used by the linker during the creation of static libraries -// during DEBUG builds. -CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING= - -//Flags used by the linker during the creation of static libraries -// during MINSIZEREL builds. -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELEASE builds. -CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING= - -//Flags used by the linker during the creation of static libraries -// during RELWITHDEBINFO builds. -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING= - -//Path to a program. -CMAKE_STRIP:FILEPATH=/usr/bin/strip - -//If this value is on, makefiles will be generated without the -// .SILENT directive, and all commands will be echoed to the console -// during the make. This is useful for debugging only. With Visual -// Studio IDE projects all commands are done without /nologo. -CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE - -//Value Computed by CMake -DeePMD_BINARY_DIR:STATIC=/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - -//Value Computed by CMake -DeePMD_IS_TOP_LEVEL:STATIC=ON - -//Value Computed by CMake -DeePMD_SOURCE_DIR:STATIC=/root/deepmd-kit/source - -//Git command line client -GIT_EXECUTABLE:FILEPATH=/usr/bin/git - -//CXX compiler flags for OpenMP parallelization -OpenMP_CXX_FLAGS:STRING=-fopenmp - -//CXX compiler libraries for OpenMP parallelization -OpenMP_CXX_LIB_NAMES:STRING=gomp;pthread - -//C compiler flags for OpenMP parallelization -OpenMP_C_FLAGS:STRING=-fopenmp - -//C compiler libraries for OpenMP parallelization -OpenMP_C_LIB_NAMES:STRING=gomp;pthread - -//Path to the gomp library for OpenMP -OpenMP_gomp_LIBRARY:FILEPATH=/usr/lib/gcc/x86_64-linux-gnu/7/libgomp.so - -//Path to the pthread library for OpenMP -OpenMP_pthread_LIBRARY:FILEPATH=/usr/lib/x86_64-linux-gnu/libpthread.so - -//No help, variable specified on the command line. -PYTHON_EXECUTABLE:PATH=/usr/bin/python3 - -//No help, variable specified on the command line. -PYTHON_INCLUDE_DIR:PATH=/usr/include/python3.6m - -//No help, variable specified on the command line. -PYTHON_LIBRARY:PATH=/usr/lib/x86_64-linux-gnu/libpython3.6m.so - -//No help, variable specified on the command line. -PYTHON_VERSION_STRING:STRING=3.6.9 - -//No help, variable specified on the command line. -Python3_EXECUTABLE:PATH=/usr/bin/python3 - -//No help, variable specified on the command line. -Python3_FIND_REGISTRY:STRING=NEVER - -//No help, variable specified on the command line. -Python3_INCLUDE_DIR:PATH=/usr/include/python3.6m - -//No help, variable specified on the command line. -Python3_NumPy_INCLUDE_DIRS:PATH=/usr/local/lib/python3.6/dist-packages/numpy/core/include - -//No help, variable specified on the command line. -Python3_ROOT_DIR:PATH=/usr - -//No help, variable specified on the command line. -Python_EXECUTABLE:PATH=/usr/bin/python3 - -//No help, variable specified on the command line. -Python_FIND_REGISTRY:STRING=NEVER - -//No help, variable specified on the command line. -Python_INCLUDE_DIR:PATH=/usr/include/python3.6m - -//No help, variable specified on the command line. -Python_NumPy_INCLUDE_DIRS:PATH=/usr/local/lib/python3.6/dist-packages/numpy/core/include - -//No help, variable specified on the command line. -Python_ROOT_DIR:PATH=/usr - -//No help, variable specified on the command line. -TENSORFLOW_ROOT:STRING=/usr/local/lib/python3.6/dist-packages/tensorflow - -//Path to a library. -TensorFlowFramework_LIBRARY_tensorflow_framework:FILEPATH=/usr/local/lib/python3.6/dist-packages/tensorflow/libtensorflow_framework.so.2 - -//Path to a file. -TensorFlow_INCLUDE_DIRS:PATH=/usr/local/lib/python3.6/dist-packages/tensorflow/include - -//Path to a file. -TensorFlow_INCLUDE_DIRS_GOOGLE:PATH=/usr/local/lib/python3.6/dist-packages/tensorflow/include - - -######################## -# INTERNAL cache entries -######################## - -//ADVANCED property for variable: CMAKE_ADDR2LINE -CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_AR -CMAKE_AR-ADVANCED:INTERNAL=1 -//This is the directory where this CMakeCache.txt was created -CMAKE_CACHEFILE_DIR:INTERNAL=/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build -//Major version of cmake used to create the current loaded cache -CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3 -//Minor version of cmake used to create the current loaded cache -CMAKE_CACHE_MINOR_VERSION:INTERNAL=25 -//Patch version of cmake used to create the current loaded cache -CMAKE_CACHE_PATCH_VERSION:INTERNAL=2 -//Path to CMake executable. -CMAKE_COMMAND:INTERNAL=/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -//Path to cpack program executable. -CMAKE_CPACK_COMMAND:INTERNAL=/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cpack -//Path to ctest program executable. -CMAKE_CTEST_COMMAND:INTERNAL=/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/ctest -//ADVANCED property for variable: CMAKE_CXX_COMPILER -CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR -CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB -CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS -CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG -CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL -CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE -CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO -CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER -CMAKE_C_COMPILER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_AR -CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB -CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS -CMAKE_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG -CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL -CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE -CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO -CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_DLLTOOL -CMAKE_DLLTOOL-ADVANCED:INTERNAL=1 -//Executable file format -CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS -CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG -CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL -CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE -CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS -CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1 -//Name of external makefile project generator. -CMAKE_EXTRA_GENERATOR:INTERNAL= -//Name of generator. -CMAKE_GENERATOR:INTERNAL=Ninja -//Generator instance identifier. -CMAKE_GENERATOR_INSTANCE:INTERNAL= -//Name of generator platform. -CMAKE_GENERATOR_PLATFORM:INTERNAL= -//Name of generator toolset. -CMAKE_GENERATOR_TOOLSET:INTERNAL= -//Test CMAKE_HAVE_LIBC_PTHREAD -CMAKE_HAVE_LIBC_PTHREAD:INTERNAL= -//Have library pthreads -CMAKE_HAVE_PTHREADS_CREATE:INTERNAL= -//Have library pthread -CMAKE_HAVE_PTHREAD_CREATE:INTERNAL=1 -//Source directory with the top level CMakeLists.txt file for this -// project -CMAKE_HOME_DIRECTORY:INTERNAL=/root/deepmd-kit/source -//Install .so files without execute permission. -CMAKE_INSTALL_SO_NO_EXE:INTERNAL=1 -//ADVANCED property for variable: CMAKE_LINKER -CMAKE_LINKER-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS -CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG -CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL -CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE -CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_NM -CMAKE_NM-ADVANCED:INTERNAL=1 -//number of local generators -CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4 -//ADVANCED property for variable: CMAKE_OBJCOPY -CMAKE_OBJCOPY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_OBJDUMP -CMAKE_OBJDUMP-ADVANCED:INTERNAL=1 -//Platform information initialized -CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_RANLIB -CMAKE_RANLIB-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_READELF -CMAKE_READELF-ADVANCED:INTERNAL=1 -//Path to CMake installation. -CMAKE_ROOT:INTERNAL=/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS -CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG -CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL -CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE -CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH -CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_SKIP_RPATH -CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS -CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG -CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL -CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE -CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO -CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: CMAKE_STRIP -CMAKE_STRIP-ADVANCED:INTERNAL=1 -//uname command -CMAKE_UNAME:INTERNAL=/bin/uname -//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE -CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1 -//Details about finding Git -FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[/usr/bin/git][v2.25.1()] -//Details about finding OpenMP -FIND_PACKAGE_MESSAGE_DETAILS_OpenMP:INTERNAL=[TRUE][TRUE][c ][v4.5()] -//Details about finding OpenMP_C -FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_C:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/7/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.so][v4.5()] -//Details about finding OpenMP_CXX -FIND_PACKAGE_MESSAGE_DETAILS_OpenMP_CXX:INTERNAL=[-fopenmp][/usr/lib/gcc/x86_64-linux-gnu/7/libgomp.so][/usr/lib/x86_64-linux-gnu/libpthread.so][v4.5()] -//Details about finding Threads -FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()] -//ADVANCED property for variable: GIT_EXECUTABLE -GIT_EXECUTABLE-ADVANCED:INTERNAL=1 -//Result of TRY_COMPILE -OpenMP_COMPILE_RESULT_CXX_fopenmp:INTERNAL=TRUE -//Result of TRY_COMPILE -OpenMP_COMPILE_RESULT_C_fopenmp:INTERNAL=TRUE -//ADVANCED property for variable: OpenMP_CXX_FLAGS -OpenMP_CXX_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OpenMP_CXX_LIB_NAMES -OpenMP_CXX_LIB_NAMES-ADVANCED:INTERNAL=1 -//CXX compiler's OpenMP specification date -OpenMP_CXX_SPEC_DATE:INTERNAL=201511 -//ADVANCED property for variable: OpenMP_C_FLAGS -OpenMP_C_FLAGS-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OpenMP_C_LIB_NAMES -OpenMP_C_LIB_NAMES-ADVANCED:INTERNAL=1 -//C compiler's OpenMP specification date -OpenMP_C_SPEC_DATE:INTERNAL=201511 -//Result of TRY_COMPILE -OpenMP_SPECTEST_CXX_:INTERNAL=TRUE -//Result of TRY_COMPILE -OpenMP_SPECTEST_C_:INTERNAL=TRUE -//ADVANCED property for variable: OpenMP_gomp_LIBRARY -OpenMP_gomp_LIBRARY-ADVANCED:INTERNAL=1 -//ADVANCED property for variable: OpenMP_pthread_LIBRARY -OpenMP_pthread_LIBRARY-ADVANCED:INTERNAL=1 -//No help, variable specified on the command line. -SKBUILD:INTERNAL=TRUE -//Result of TRY_COMPILE -TENSORFLOW_VERSION_COMPILE_RESULT_VAR:INTERNAL=TRUE -//Result of try_run() -TENSORFLOW_VERSION_RUN_RESULT_VAR:INTERNAL=0 -//linker supports push/pop state -_CMAKE_LINKER_PUSHPOP_STATE_SUPPORTED:INTERNAL=TRUE - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeCCompiler.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeCCompiler.cmake deleted file mode 100644 index fc343d1b467ecb2d970f1c8b5cf85aba201b7cab..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeCCompiler.cmake +++ /dev/null @@ -1,72 +0,0 @@ -set(CMAKE_C_COMPILER "/usr/bin/cc") -set(CMAKE_C_COMPILER_ARG1 "") -set(CMAKE_C_COMPILER_ID "GNU") -set(CMAKE_C_COMPILER_VERSION "7.5.0") -set(CMAKE_C_COMPILER_VERSION_INTERNAL "") -set(CMAKE_C_COMPILER_WRAPPER "") -set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "11") -set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert") -set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes") -set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros") -set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert") -set(CMAKE_C17_COMPILE_FEATURES "") -set(CMAKE_C23_COMPILE_FEATURES "") - -set(CMAKE_C_PLATFORM_ID "Linux") -set(CMAKE_C_SIMULATE_ID "") -set(CMAKE_C_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_C_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_C_COMPILER_AR "/usr/bin/gcc-ar-7") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_C_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCC 1) -set(CMAKE_C_COMPILER_LOADED 1) -set(CMAKE_C_COMPILER_WORKS TRUE) -set(CMAKE_C_ABI_COMPILED TRUE) - -set(CMAKE_C_COMPILER_ENV_VAR "CC") - -set(CMAKE_C_COMPILER_ID_RUN 1) -set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m) -set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC) -set(CMAKE_C_LINKER_PREFERENCE 10) - -# Save compiler ABI information. -set(CMAKE_C_SIZEOF_DATA_PTR "8") -set(CMAKE_C_COMPILER_ABI "ELF") -set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_C_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_C_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_C_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}") -endif() - -if(CMAKE_C_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_C_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;gcc_s;c;gcc;gcc_s") -set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake deleted file mode 100644 index 2d01f497356b2d6db87c3bf60f29c3639f990a63..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeCXXCompiler.cmake +++ /dev/null @@ -1,83 +0,0 @@ -set(CMAKE_CXX_COMPILER "/usr/bin/c++") -set(CMAKE_CXX_COMPILER_ARG1 "") -set(CMAKE_CXX_COMPILER_ID "GNU") -set(CMAKE_CXX_COMPILER_VERSION "7.5.0") -set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "") -set(CMAKE_CXX_COMPILER_WRAPPER "") -set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "14") -set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON") -set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17") -set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters") -set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates") -set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates") -set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17") -set(CMAKE_CXX20_COMPILE_FEATURES "") -set(CMAKE_CXX23_COMPILE_FEATURES "") - -set(CMAKE_CXX_PLATFORM_ID "Linux") -set(CMAKE_CXX_SIMULATE_ID "") -set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "") -set(CMAKE_CXX_SIMULATE_VERSION "") - - - - -set(CMAKE_AR "/usr/bin/ar") -set(CMAKE_CXX_COMPILER_AR "/usr/bin/gcc-ar-7") -set(CMAKE_RANLIB "/usr/bin/ranlib") -set(CMAKE_CXX_COMPILER_RANLIB "/usr/bin/gcc-ranlib-7") -set(CMAKE_LINKER "/usr/bin/ld") -set(CMAKE_MT "") -set(CMAKE_COMPILER_IS_GNUCXX 1) -set(CMAKE_CXX_COMPILER_LOADED 1) -set(CMAKE_CXX_COMPILER_WORKS TRUE) -set(CMAKE_CXX_ABI_COMPILED TRUE) - -set(CMAKE_CXX_COMPILER_ENV_VAR "CXX") - -set(CMAKE_CXX_COMPILER_ID_RUN 1) -set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm) -set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC) - -foreach (lang C OBJC OBJCXX) - if (CMAKE_${lang}_COMPILER_ID_RUN) - foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS) - list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension}) - endforeach() - endif() -endforeach() - -set(CMAKE_CXX_LINKER_PREFERENCE 30) -set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1) - -# Save compiler ABI information. -set(CMAKE_CXX_SIZEOF_DATA_PTR "8") -set(CMAKE_CXX_COMPILER_ABI "ELF") -set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN") -set(CMAKE_CXX_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") - -if(CMAKE_CXX_SIZEOF_DATA_PTR) - set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}") -endif() - -if(CMAKE_CXX_COMPILER_ABI) - set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}") -endif() - -if(CMAKE_CXX_LIBRARY_ARCHITECTURE) - set(CMAKE_LIBRARY_ARCHITECTURE "x86_64-linux-gnu") -endif() - -set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "") -if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX) - set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}") -endif() - - - - - -set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include") -set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc_s;gcc;c;gcc_s;gcc") -set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib") -set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "") diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin deleted file mode 100755 index 050c07ecf15540a149c24061727295c5c65b2a0b..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_C.bin and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin deleted file mode 100755 index acdc3e43faef32df97d4d2fb8d5baef30e98e6e8..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CMakeDetermineCompilerABI_CXX.bin and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c deleted file mode 100644 index a83e3782cb776bf232a6ca3104d25dd7c92ea8c5..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/CMakeCCompilerId.c +++ /dev/null @@ -1,868 +0,0 @@ -#ifdef __cplusplus -# error "A C++ compiler has been selected for C." -#endif - -#if defined(__18CXX) -# define ID_VOID_MAIN -#endif -#if defined(__CLASSIC_C__) -/* cv-qualifiers did not exist in K&R C */ -# define const -# define volatile -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_C) -# define COMPILER_ID "SunPro" -# if __SUNPRO_C >= 0x5100 - /* __SUNPRO_C = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF) -# endif - -#elif defined(__HP_cc) -# define COMPILER_ID "HP" - /* __HP_cc = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100) - -#elif defined(__DECC) -# define COMPILER_ID "Compaq" - /* __DECC_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000) - -#elif defined(__IBMC__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800 -# define COMPILER_ID "XL" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMC__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__TINYC__) -# define COMPILER_ID "TinyCC" - -#elif defined(__BCC__) -# define COMPILER_ID "Bruce" - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(1) -# if defined(__LCC__) -# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) -# endif -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) -# define COMPILER_ID "GNU" -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - -#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC) -# define COMPILER_ID "SDCC" -# if defined(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR) -# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR) -# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH) -# else - /* SDCC = VRP */ -# define COMPILER_VERSION_MAJOR DEC(SDCC/100) -# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10) -# define COMPILER_VERSION_PATCH DEC(SDCC % 10) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if !defined(__STDC__) && !defined(__clang__) -# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__) -# define C_VERSION "90" -# else -# define C_VERSION -# endif -#elif __STDC_VERSION__ > 201710L -# define C_VERSION "23" -#elif __STDC_VERSION__ >= 201710L -# define C_VERSION "17" -#elif __STDC_VERSION__ >= 201000L -# define C_VERSION "11" -#elif __STDC_VERSION__ >= 199901L -# define C_VERSION "99" -#else -# define C_VERSION "90" -#endif -const char* info_language_standard_default = - "INFO" ":" "standard_default[" C_VERSION "]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -#ifdef ID_VOID_MAIN -void main() {} -#else -# if defined(__CLASSIC_C__) -int main(argc, argv) int argc; char *argv[]; -# else -int main(int argc, char* argv[]) -# endif -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} -#endif diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/a.out b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/a.out deleted file mode 100755 index 42b8d3e2b244a2ca6ea32299f23c486f0e8d3e84..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/a.out and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp deleted file mode 100644 index c9ba632f0dae5868a1f901499e619ad099309475..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +++ /dev/null @@ -1,857 +0,0 @@ -/* This source file must have a .cpp extension so that all C++ compilers - recognize the extension without flags. Borland does not know .cxx for - example. */ -#ifndef __cplusplus -# error "A C compiler has been selected for C++." -#endif - -#if !defined(__has_include) -/* If the compiler does not have __has_include, pretend the answer is - always no. */ -# define __has_include(x) 0 -#endif - - -/* Version number components: V=Version, R=Revision, P=Patch - Version date components: YYYY=Year, MM=Month, DD=Day */ - -#if defined(__COMO__) -# define COMPILER_ID "Comeau" - /* __COMO_VERSION__ = VRR */ -# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100) -# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100) - -#elif defined(__INTEL_COMPILER) || defined(__ICC) -# define COMPILER_ID "Intel" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# if defined(__GNUC__) -# define SIMULATE_ID "GNU" -# endif - /* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later, - except that a few beta releases use the old format with V=2021. */ -# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111 -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10) -# if defined(__INTEL_COMPILER_UPDATE) -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE) -# else -# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10) -# endif -# else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER) -# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE) - /* The third version component from --version is an update index, - but no macro is provided for it. */ -# define COMPILER_VERSION_PATCH DEC(0) -# endif -# if defined(__INTEL_COMPILER_BUILD_DATE) - /* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */ -# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE) -# endif -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER) -# define COMPILER_ID "IntelLLVM" -#if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -#endif -#if defined(__GNUC__) -# define SIMULATE_ID "GNU" -#endif -/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and - * later. Look for 6 digit vs. 8 digit version number to decide encoding. - * VVVV is no smaller than the current year when a version is released. - */ -#if __INTEL_LLVM_COMPILER < 1000000L -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10) -#else -# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000) -# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100) -#endif -#if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -#endif -#if defined(__GNUC__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -#elif defined(__GNUG__) -# define SIMULATE_VERSION_MAJOR DEC(__GNUG__) -#endif -#if defined(__GNUC_MINOR__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -#endif -#if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -#endif - -#elif defined(__PATHCC__) -# define COMPILER_ID "PathScale" -# define COMPILER_VERSION_MAJOR DEC(__PATHCC__) -# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__) -# if defined(__PATHCC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__) -# endif - -#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__) -# define COMPILER_ID "Embarcadero" -# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF) -# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF) -# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF) - -#elif defined(__BORLANDC__) -# define COMPILER_ID "Borland" - /* __BORLANDC__ = 0xVRR */ -# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8) -# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF) - -#elif defined(__WATCOMC__) && __WATCOMC__ < 1200 -# define COMPILER_ID "Watcom" - /* __WATCOMC__ = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__WATCOMC__) -# define COMPILER_ID "OpenWatcom" - /* __WATCOMC__ = VVRP + 1100 */ -# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100) -# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10) -# if (__WATCOMC__ % 10) > 0 -# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10) -# endif - -#elif defined(__SUNPRO_CC) -# define COMPILER_ID "SunPro" -# if __SUNPRO_CC >= 0x5100 - /* __SUNPRO_CC = 0xVRRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# else - /* __SUNPRO_CC = 0xVRP */ -# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8) -# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF) -# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF) -# endif - -#elif defined(__HP_aCC) -# define COMPILER_ID "HP" - /* __HP_aCC = VVRRPP */ -# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000) -# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100) -# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100) - -#elif defined(__DECCXX) -# define COMPILER_ID "Compaq" - /* __DECCXX_VER = VVRRTPPPP */ -# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000) -# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100) -# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000) - -#elif defined(__IBMCPP__) && defined(__COMPILER_VER__) -# define COMPILER_ID "zOS" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__open_xl__) && defined(__clang__) -# define COMPILER_ID "IBMClang" -# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__) -# define COMPILER_VERSION_MINOR DEC(__open_xl_release__) -# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__) - - -#elif defined(__ibmxl__) && defined(__clang__) -# define COMPILER_ID "XLClang" -# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__) -# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__) -# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__) -# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__) - - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800 -# define COMPILER_ID "XL" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800 -# define COMPILER_ID "VisualAge" - /* __IBMCPP__ = VRP */ -# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100) -# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10) -# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10) - -#elif defined(__NVCOMPILER) -# define COMPILER_ID "NVHPC" -# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__) -# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__) -# if defined(__NVCOMPILER_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__) -# endif - -#elif defined(__PGI) -# define COMPILER_ID "PGI" -# define COMPILER_VERSION_MAJOR DEC(__PGIC__) -# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__) -# if defined(__PGIC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__) -# endif - -#elif defined(_CRAYC) -# define COMPILER_ID "Cray" -# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR) -# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR) - -#elif defined(__TI_COMPILER_VERSION__) -# define COMPILER_ID "TI" - /* __TI_COMPILER_VERSION__ = VVVRRRPPP */ -# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000) -# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000) -# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000) - -#elif defined(__CLANG_FUJITSU) -# define COMPILER_ID "FujitsuClang" -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# define COMPILER_VERSION_INTERNAL_STR __clang_version__ - - -#elif defined(__FUJITSU) -# define COMPILER_ID "Fujitsu" -# if defined(__FCC_version__) -# define COMPILER_VERSION __FCC_version__ -# elif defined(__FCC_major__) -# define COMPILER_VERSION_MAJOR DEC(__FCC_major__) -# define COMPILER_VERSION_MINOR DEC(__FCC_minor__) -# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__) -# endif -# if defined(__fcc_version) -# define COMPILER_VERSION_INTERNAL DEC(__fcc_version) -# elif defined(__FCC_VERSION) -# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION) -# endif - - -#elif defined(__ghs__) -# define COMPILER_ID "GHS" -/* __GHS_VERSION_NUMBER = VVVVRP */ -# ifdef __GHS_VERSION_NUMBER -# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100) -# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10) -# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10) -# endif - -#elif defined(__TASKING__) -# define COMPILER_ID "Tasking" - # define COMPILER_VERSION_MAJOR DEC(__VERSION__/1000) - # define COMPILER_VERSION_MINOR DEC(__VERSION__ % 100) -# define COMPILER_VERSION_INTERNAL DEC(__VERSION__) - -#elif defined(__SCO_VERSION__) -# define COMPILER_ID "SCO" - -#elif defined(__ARMCC_VERSION) && !defined(__clang__) -# define COMPILER_ID "ARMCC" -#if __ARMCC_VERSION >= 1000000 - /* __ARMCC_VERSION = VRRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#else - /* __ARMCC_VERSION = VRPPPP */ - # define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000) - # define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10) - # define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000) -#endif - - -#elif defined(__clang__) && defined(__apple_build_version__) -# define COMPILER_ID "AppleClang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif -# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__) - -#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION) -# define COMPILER_ID "ARMClang" - # define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000) - # define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100) - # define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000) -# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION) - -#elif defined(__clang__) -# define COMPILER_ID "Clang" -# if defined(_MSC_VER) -# define SIMULATE_ID "MSVC" -# endif -# define COMPILER_VERSION_MAJOR DEC(__clang_major__) -# define COMPILER_VERSION_MINOR DEC(__clang_minor__) -# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__) -# if defined(_MSC_VER) - /* _MSC_VER = VVRR */ -# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100) -# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100) -# endif - -#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__)) -# define COMPILER_ID "LCC" -# define COMPILER_VERSION_MAJOR DEC(1) -# if defined(__LCC__) -# define COMPILER_VERSION_MINOR DEC(__LCC__- 100) -# endif -# if defined(__LCC_MINOR__) -# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__) -# endif -# if defined(__GNUC__) && defined(__GNUC_MINOR__) -# define SIMULATE_ID "GNU" -# define SIMULATE_VERSION_MAJOR DEC(__GNUC__) -# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__) -# if defined(__GNUC_PATCHLEVEL__) -# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif -# endif - -#elif defined(__GNUC__) || defined(__GNUG__) -# define COMPILER_ID "GNU" -# if defined(__GNUC__) -# define COMPILER_VERSION_MAJOR DEC(__GNUC__) -# else -# define COMPILER_VERSION_MAJOR DEC(__GNUG__) -# endif -# if defined(__GNUC_MINOR__) -# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__) -# endif -# if defined(__GNUC_PATCHLEVEL__) -# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__) -# endif - -#elif defined(_MSC_VER) -# define COMPILER_ID "MSVC" - /* _MSC_VER = VVRR */ -# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100) -# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100) -# if defined(_MSC_FULL_VER) -# if _MSC_VER >= 1400 - /* _MSC_FULL_VER = VVRRPPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000) -# else - /* _MSC_FULL_VER = VVRRPPPP */ -# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000) -# endif -# endif -# if defined(_MSC_BUILD) -# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD) -# endif - -#elif defined(_ADI_COMPILER) -# define COMPILER_ID "ADSP" -#if defined(__VERSIONNUM__) - /* __VERSIONNUM__ = 0xVVRRPPTT */ -# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF) -# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF) -# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF) -# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF) -#endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# define COMPILER_ID "IAR" -# if defined(__VER__) && defined(__ICCARM__) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000) -# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000) -# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__)) -# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100) -# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100)) -# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__) -# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__) -# endif - - -/* These compilers are either not known or too old to define an - identification macro. Try to identify the platform and guess that - it is the native compiler. */ -#elif defined(__hpux) || defined(__hpua) -# define COMPILER_ID "HP" - -#else /* unknown compiler */ -# define COMPILER_ID "" -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]"; -#ifdef SIMULATE_ID -char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]"; -#endif - -#ifdef __QNXNTO__ -char const* qnxnto = "INFO" ":" "qnxnto[]"; -#endif - -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) -char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]"; -#endif - -#define STRINGIFY_HELPER(X) #X -#define STRINGIFY(X) STRINGIFY_HELPER(X) - -/* Identify known platforms by name. */ -#if defined(__linux) || defined(__linux__) || defined(linux) -# define PLATFORM_ID "Linux" - -#elif defined(__MSYS__) -# define PLATFORM_ID "MSYS" - -#elif defined(__CYGWIN__) -# define PLATFORM_ID "Cygwin" - -#elif defined(__MINGW32__) -# define PLATFORM_ID "MinGW" - -#elif defined(__APPLE__) -# define PLATFORM_ID "Darwin" - -#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32) -# define PLATFORM_ID "Windows" - -#elif defined(__FreeBSD__) || defined(__FreeBSD) -# define PLATFORM_ID "FreeBSD" - -#elif defined(__NetBSD__) || defined(__NetBSD) -# define PLATFORM_ID "NetBSD" - -#elif defined(__OpenBSD__) || defined(__OPENBSD) -# define PLATFORM_ID "OpenBSD" - -#elif defined(__sun) || defined(sun) -# define PLATFORM_ID "SunOS" - -#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__) -# define PLATFORM_ID "AIX" - -#elif defined(__hpux) || defined(__hpux__) -# define PLATFORM_ID "HP-UX" - -#elif defined(__HAIKU__) -# define PLATFORM_ID "Haiku" - -#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS) -# define PLATFORM_ID "BeOS" - -#elif defined(__QNX__) || defined(__QNXNTO__) -# define PLATFORM_ID "QNX" - -#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__) -# define PLATFORM_ID "Tru64" - -#elif defined(__riscos) || defined(__riscos__) -# define PLATFORM_ID "RISCos" - -#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__) -# define PLATFORM_ID "SINIX" - -#elif defined(__UNIX_SV__) -# define PLATFORM_ID "UNIX_SV" - -#elif defined(__bsdos__) -# define PLATFORM_ID "BSDOS" - -#elif defined(_MPRAS) || defined(MPRAS) -# define PLATFORM_ID "MP-RAS" - -#elif defined(__osf) || defined(__osf__) -# define PLATFORM_ID "OSF1" - -#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv) -# define PLATFORM_ID "SCO_SV" - -#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX) -# define PLATFORM_ID "ULTRIX" - -#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX) -# define PLATFORM_ID "Xenix" - -#elif defined(__WATCOMC__) -# if defined(__LINUX__) -# define PLATFORM_ID "Linux" - -# elif defined(__DOS__) -# define PLATFORM_ID "DOS" - -# elif defined(__OS2__) -# define PLATFORM_ID "OS2" - -# elif defined(__WINDOWS__) -# define PLATFORM_ID "Windows3x" - -# elif defined(__VXWORKS__) -# define PLATFORM_ID "VxWorks" - -# else /* unknown platform */ -# define PLATFORM_ID -# endif - -#elif defined(__INTEGRITY) -# if defined(INT_178B) -# define PLATFORM_ID "Integrity178" - -# else /* regular Integrity */ -# define PLATFORM_ID "Integrity" -# endif - -# elif defined(_ADI_COMPILER) -# define PLATFORM_ID "ADSP" - -#else /* unknown platform */ -# define PLATFORM_ID - -#endif - -/* For windows compilers MSVC and Intel we can determine - the architecture of the compiler being used. This is because - the compilers do not have flags that can change the architecture, - but rather depend on which compiler is being used -*/ -#if defined(_WIN32) && defined(_MSC_VER) -# if defined(_M_IA64) -# define ARCHITECTURE_ID "IA64" - -# elif defined(_M_ARM64EC) -# define ARCHITECTURE_ID "ARM64EC" - -# elif defined(_M_X64) || defined(_M_AMD64) -# define ARCHITECTURE_ID "x64" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# elif defined(_M_ARM64) -# define ARCHITECTURE_ID "ARM64" - -# elif defined(_M_ARM) -# if _M_ARM == 4 -# define ARCHITECTURE_ID "ARMV4I" -# elif _M_ARM == 5 -# define ARCHITECTURE_ID "ARMV5I" -# else -# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM) -# endif - -# elif defined(_M_MIPS) -# define ARCHITECTURE_ID "MIPS" - -# elif defined(_M_SH) -# define ARCHITECTURE_ID "SHx" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__WATCOMC__) -# if defined(_M_I86) -# define ARCHITECTURE_ID "I86" - -# elif defined(_M_IX86) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC) -# if defined(__ICCARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__ICCRX__) -# define ARCHITECTURE_ID "RX" - -# elif defined(__ICCRH850__) -# define ARCHITECTURE_ID "RH850" - -# elif defined(__ICCRL78__) -# define ARCHITECTURE_ID "RL78" - -# elif defined(__ICCRISCV__) -# define ARCHITECTURE_ID "RISCV" - -# elif defined(__ICCAVR__) -# define ARCHITECTURE_ID "AVR" - -# elif defined(__ICC430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__ICCV850__) -# define ARCHITECTURE_ID "V850" - -# elif defined(__ICC8051__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__ICCSTM8__) -# define ARCHITECTURE_ID "STM8" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__ghs__) -# if defined(__PPC64__) -# define ARCHITECTURE_ID "PPC64" - -# elif defined(__ppc__) -# define ARCHITECTURE_ID "PPC" - -# elif defined(__ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__x86_64__) -# define ARCHITECTURE_ID "x64" - -# elif defined(__i386__) -# define ARCHITECTURE_ID "X86" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -#elif defined(__TI_COMPILER_VERSION__) -# if defined(__TI_ARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__MSP430__) -# define ARCHITECTURE_ID "MSP430" - -# elif defined(__TMS320C28XX__) -# define ARCHITECTURE_ID "TMS320C28x" - -# elif defined(__TMS320C6X__) || defined(_TMS320C6X) -# define ARCHITECTURE_ID "TMS320C6x" - -# else /* unknown architecture */ -# define ARCHITECTURE_ID "" -# endif - -# elif defined(__ADSPSHARC__) -# define ARCHITECTURE_ID "SHARC" - -# elif defined(__ADSPBLACKFIN__) -# define ARCHITECTURE_ID "Blackfin" - -#elif defined(__TASKING__) - -# if defined(__CTC__) || defined(__CPTC__) -# define ARCHITECTURE_ID "TriCore" - -# elif defined(__CMCS__) -# define ARCHITECTURE_ID "MCS" - -# elif defined(__CARM__) -# define ARCHITECTURE_ID "ARM" - -# elif defined(__CARC__) -# define ARCHITECTURE_ID "ARC" - -# elif defined(__C51__) -# define ARCHITECTURE_ID "8051" - -# elif defined(__CPCP__) -# define ARCHITECTURE_ID "PCP" - -# else -# define ARCHITECTURE_ID "" -# endif - -#else -# define ARCHITECTURE_ID -#endif - -/* Convert integer to decimal digit literals. */ -#define DEC(n) \ - ('0' + (((n) / 10000000)%10)), \ - ('0' + (((n) / 1000000)%10)), \ - ('0' + (((n) / 100000)%10)), \ - ('0' + (((n) / 10000)%10)), \ - ('0' + (((n) / 1000)%10)), \ - ('0' + (((n) / 100)%10)), \ - ('0' + (((n) / 10)%10)), \ - ('0' + ((n) % 10)) - -/* Convert integer to hex digit literals. */ -#define HEX(n) \ - ('0' + ((n)>>28 & 0xF)), \ - ('0' + ((n)>>24 & 0xF)), \ - ('0' + ((n)>>20 & 0xF)), \ - ('0' + ((n)>>16 & 0xF)), \ - ('0' + ((n)>>12 & 0xF)), \ - ('0' + ((n)>>8 & 0xF)), \ - ('0' + ((n)>>4 & 0xF)), \ - ('0' + ((n) & 0xF)) - -/* Construct a string literal encoding the version number. */ -#ifdef COMPILER_VERSION -char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]"; - -/* Construct a string literal encoding the version number components. */ -#elif defined(COMPILER_VERSION_MAJOR) -char const info_version[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[', - COMPILER_VERSION_MAJOR, -# ifdef COMPILER_VERSION_MINOR - '.', COMPILER_VERSION_MINOR, -# ifdef COMPILER_VERSION_PATCH - '.', COMPILER_VERSION_PATCH, -# ifdef COMPILER_VERSION_TWEAK - '.', COMPILER_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct a string literal encoding the internal version number. */ -#ifdef COMPILER_VERSION_INTERNAL -char const info_version_internal[] = { - 'I', 'N', 'F', 'O', ':', - 'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_', - 'i','n','t','e','r','n','a','l','[', - COMPILER_VERSION_INTERNAL,']','\0'}; -#elif defined(COMPILER_VERSION_INTERNAL_STR) -char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]"; -#endif - -/* Construct a string literal encoding the version number components. */ -#ifdef SIMULATE_VERSION_MAJOR -char const info_simulate_version[] = { - 'I', 'N', 'F', 'O', ':', - 's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[', - SIMULATE_VERSION_MAJOR, -# ifdef SIMULATE_VERSION_MINOR - '.', SIMULATE_VERSION_MINOR, -# ifdef SIMULATE_VERSION_PATCH - '.', SIMULATE_VERSION_PATCH, -# ifdef SIMULATE_VERSION_TWEAK - '.', SIMULATE_VERSION_TWEAK, -# endif -# endif -# endif - ']','\0'}; -#endif - -/* Construct the string literal in pieces to prevent the source from - getting matched. Store it in a pointer rather than an array - because some compilers will just produce instructions to fill the - array rather than assigning a pointer to a static array. */ -char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]"; -char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]"; - - - -#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L -# if defined(__INTEL_CXX11_MODE__) -# if defined(__cpp_aggregate_nsdmi) -# define CXX_STD 201402L -# else -# define CXX_STD 201103L -# endif -# else -# define CXX_STD 199711L -# endif -#elif defined(_MSC_VER) && defined(_MSVC_LANG) -# define CXX_STD _MSVC_LANG -#else -# define CXX_STD __cplusplus -#endif - -const char* info_language_standard_default = "INFO" ":" "standard_default[" -#if CXX_STD > 202002L - "23" -#elif CXX_STD > 201703L - "20" -#elif CXX_STD >= 201703L - "17" -#elif CXX_STD >= 201402L - "14" -#elif CXX_STD >= 201103L - "11" -#else - "98" -#endif -"]"; - -const char* info_language_extensions_default = "INFO" ":" "extensions_default[" -#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \ - defined(__TI_COMPILER_VERSION__)) && \ - !defined(__STRICT_ANSI__) - "ON" -#else - "OFF" -#endif -"]"; - -/*--------------------------------------------------------------------------*/ - -int main(int argc, char* argv[]) -{ - int require = 0; - require += info_compiler[argc]; - require += info_platform[argc]; - require += info_arch[argc]; -#ifdef COMPILER_VERSION_MAJOR - require += info_version[argc]; -#endif -#ifdef COMPILER_VERSION_INTERNAL - require += info_version_internal[argc]; -#endif -#ifdef SIMULATE_ID - require += info_simulate[argc]; -#endif -#ifdef SIMULATE_VERSION_MAJOR - require += info_simulate_version[argc]; -#endif -#if defined(__CRAYXT_COMPUTE_LINUX_TARGET) - require += info_cray[argc]; -#endif - require += info_language_standard_default[argc]; - require += info_language_extensions_default[argc]; - (void)argv; - return require; -} diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/a.out b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/a.out deleted file mode 100755 index ef8e892f21902ce307ab803c357d77010c966c93..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/a.out and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeError.log b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeError.log deleted file mode 100644 index d08b0d6d6d808e30aaa22faf462227fe2f2b43d3..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeError.log +++ /dev/null @@ -1,102 +0,0 @@ -Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-GU1KWh - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_08e87 && [1/2] Building C object CMakeFiles/cmTC_08e87.dir/src.c.o -[2/2] Linking C executable cmTC_08e87 -FAILED: cmTC_08e87 -: && /usr/bin/cc CMakeFiles/cmTC_08e87.dir/src.c.o -o cmTC_08e87 && : -CMakeFiles/cmTC_08e87.dir/src.c.o: In function `main': -src.c:(.text+0x3e): undefined reference to `pthread_create' -src.c:(.text+0x4a): undefined reference to `pthread_detach' -src.c:(.text+0x56): undefined reference to `pthread_cancel' -src.c:(.text+0x67): undefined reference to `pthread_join' -collect2: error: ld returned 1 exit status -ninja: build stopped: subcommand failed. - - -Source file was: -#include - -static void* test_func(void* data) -{ - return data; -} - -int main(void) -{ - pthread_t thread; - pthread_create(&thread, NULL, test_func, NULL); - pthread_detach(thread); - pthread_cancel(thread); - pthread_join(thread, NULL); - pthread_atfork(NULL, NULL, NULL); - pthread_exit(NULL); - - return 0; -} - - -Determining if the function pthread_create exists in the pthreads failed with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-MeJDCi - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_e25c5 && [1/2] Building C object CMakeFiles/cmTC_e25c5.dir/CheckFunctionExists.c.o -[2/2] Linking C executable cmTC_e25c5 -FAILED: cmTC_e25c5 -: && /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_e25c5.dir/CheckFunctionExists.c.o -o cmTC_e25c5 -lpthreads && : -/usr/bin/ld: cannot find -lpthreads -collect2: error: ld returned 1 exit status -ninja: build stopped: subcommand failed. - - - -Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-maaLfJ - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_1daa7 && [1/2] Building C object CMakeFiles/cmTC_1daa7.dir/src.c.o -[2/2] Linking C executable cmTC_1daa7 -FAILED: cmTC_1daa7 -: && /usr/bin/cc CMakeFiles/cmTC_1daa7.dir/src.c.o -o cmTC_1daa7 && : -CMakeFiles/cmTC_1daa7.dir/src.c.o: In function `main': -src.c:(.text+0x3e): undefined reference to `pthread_create' -src.c:(.text+0x4a): undefined reference to `pthread_detach' -src.c:(.text+0x56): undefined reference to `pthread_cancel' -src.c:(.text+0x67): undefined reference to `pthread_join' -collect2: error: ld returned 1 exit status -ninja: build stopped: subcommand failed. - - -Source file was: -#include - -static void* test_func(void* data) -{ - return data; -} - -int main(void) -{ - pthread_t thread; - pthread_create(&thread, NULL, test_func, NULL); - pthread_detach(thread); - pthread_cancel(thread); - pthread_join(thread, NULL); - pthread_atfork(NULL, NULL, NULL); - pthread_exit(NULL); - - return 0; -} - - -Determining if the function pthread_create exists in the pthreads failed with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-2YQCXJ - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_9db68 && [1/2] Building C object CMakeFiles/cmTC_9db68.dir/CheckFunctionExists.c.o -[2/2] Linking C executable cmTC_9db68 -FAILED: cmTC_9db68 -: && /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_9db68.dir/CheckFunctionExists.c.o -o cmTC_9db68 -lpthreads && : -/usr/bin/ld: cannot find -lpthreads -collect2: error: ld returned 1 exit status -ninja: build stopped: subcommand failed. - - - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeOutput.log b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeOutput.log deleted file mode 100644 index f5ac99374cccc861c5d32006c03ac5d5ef57848e..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeOutput.log +++ /dev/null @@ -1,1562 +0,0 @@ -The system is: Linux - 3.10.0-957.el7.x86_64 - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/cc -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - -The C compiler identification is GNU, found in "/public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/a.out" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/c++ -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - -The CXX compiler identification is GNU, found in "/public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/a.out" - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-Bi6Fwj - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_be47a && [1/2] Building C object CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccKvVPHc.s -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o /tmp/ccKvVPHc.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' -[2/2] Linking C executable cmTC_be47a -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_be47a' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccgAdDtt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_be47a /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_be47a' '-mtune=generic' '-march=x86-64' - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-Bi6Fwj] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_be47a && [1/2] Building C object CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccKvVPHc.s] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o /tmp/ccKvVPHc.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [[2/2] Linking C executable cmTC_be47a] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_be47a' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccgAdDtt.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_be47a /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccgAdDtt.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_be47a] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_be47a.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-1hx6mj - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_bdc77 && [1/2] Building CXX object CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccH2NHBc.s -GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7" -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/include/c++/7 - /usr/include/x86_64-linux-gnu/c++/7 - /usr/include/c++/7/backward - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccH2NHBc.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' -[2/2] Linking CXX executable cmTC_bdc77 -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bdc77' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccE3cXHt.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_bdc77 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bdc77' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/include/c++/7] - add: [/usr/include/x86_64-linux-gnu/c++/7] - add: [/usr/include/c++/7/backward] - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/include/c++/7] ==> [/usr/include/c++/7] - collapse include dir [/usr/include/x86_64-linux-gnu/c++/7] ==> [/usr/include/x86_64-linux-gnu/c++/7] - collapse include dir [/usr/include/c++/7/backward] ==> [/usr/include/c++/7/backward] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-1hx6mj] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_bdc77 && [1/2] Building CXX object CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccH2NHBc.s] - ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/include/c++/7] - ignore line: [ /usr/include/x86_64-linux-gnu/c++/7] - ignore line: [ /usr/include/c++/7/backward] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccH2NHBc.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [[2/2] Linking CXX executable cmTC_bdc77] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_bdc77' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccE3cXHt.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_bdc77 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccE3cXHt.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_bdc77] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_bdc77.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -Determining if the function pthread_create exists in the pthread passed with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-lVfZcg - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_90dd8 && [1/2] Building C object CMakeFiles/cmTC_90dd8.dir/CheckFunctionExists.c.o -[2/2] Linking C executable cmTC_90dd8 - - - -Detecting C OpenMP compiler ABI info compiled with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-yMxqhi - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_a6b30 && [1/2] Building C object CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D_REENTRANT /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-yMxqhi/OpenMPTryFlag.c -quiet -dumpbase OpenMPTryFlag.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cc6FJT3m.s -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8 -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' - as -v --64 -o CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o /tmp/cc6FJT3m.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' -[2/2] Linking C executable cmTC_a6b30 -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_a6b30' '-v' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccOcCqZD.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a6b30 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o -lgomp -lgcc --push-state --as-needed -lgcc_s --pop-state -lpthread -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_a6b30' '-v' '-mtune=generic' '-march=x86-64' '-pthread' - - - -Parsed C OpenMP implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-yMxqhi] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_a6b30 && [1/2] Building C object CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D_REENTRANT /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-yMxqhi/OpenMPTryFlag.c -quiet -dumpbase OpenMPTryFlag.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/cc6FJT3m.s] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o /tmp/cc6FJT3m.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [[2/2] Linking C executable cmTC_a6b30] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_a6b30' '-v' '-mtune=generic' '-march=x86-64' '-pthread'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccOcCqZD.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_a6b30 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o -lgomp -lgcc --push-state --as-needed -lgcc_s --pop-state -lpthread -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccOcCqZD.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lpthread] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_a6b30] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_a6b30.dir/OpenMPTryFlag.c.o] ==> ignore - arg [-lgomp] ==> lib [gomp] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lpthread] ==> lib [pthread] - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [gomp;gcc;gcc_s;pthread;c;gcc;gcc_s] - implicit objs: [] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -Detecting CXX OpenMP compiler ABI info compiled with the following output: -Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-oWMMbh - -Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_fdaf2 && [1/2] Building CXX object CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D_REENTRANT /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-oWMMbh/OpenMPTryFlag.cpp -quiet -dumpbase OpenMPTryFlag.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o -std=gnu++11 -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccSdKcZj.s -GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7" -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/include/c++/7 - /usr/include/x86_64-linux-gnu/c++/7 - /usr/include/c++/7/backward - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07 -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - as -v --64 -o CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o /tmp/ccSdKcZj.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' -[2/2] Linking CXX executable cmTC_fdaf2 -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_fdaf2' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccH8ZDWE.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_fdaf2 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o -lstdc++ -lm -lgomp -lgcc_s -lgcc -lpthread -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_fdaf2' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - - - -Parsed CXX OpenMP implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-oWMMbh] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-6r5leccz/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_fdaf2 && [1/2] Building CXX object CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D_REENTRANT /public/home/zhangqha/sourcecode/source/examples/TensorFlow/Train/new/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-oWMMbh/OpenMPTryFlag.cpp -quiet -dumpbase OpenMPTryFlag.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o -std=gnu++11 -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccSdKcZj.s] - ignore line: [GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/include/c++/7] - ignore line: [ /usr/include/x86_64-linux-gnu/c++/7] - ignore line: [ /usr/include/c++/7/backward] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o /tmp/ccSdKcZj.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [[2/2] Linking CXX executable cmTC_fdaf2] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_fdaf2' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccH8ZDWE.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_fdaf2 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o -lstdc++ -lm -lgomp -lgcc_s -lgcc -lpthread -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccH8ZDWE.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lpthread] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_fdaf2] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_fdaf2.dir/OpenMPTryFlag.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgomp] ==> lib [gomp] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lpthread] ==> lib [pthread] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gomp;gcc_s;gcc;pthread;c;gcc_s;gcc] - implicit objs: [] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -The system is: Linux - 3.10.0-957.el7.x86_64 - x86_64 -Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded. -Compiler: /usr/bin/cc -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out" - -The C compiler identification is GNU, found in "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdC/a.out" - -Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded. -Compiler: /usr/bin/c++ -Build flags: -Id flags: - -The output was: -0 - - -Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out" - -The CXX compiler identification is GNU, found in "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/3.25.2/CompilerIdCXX/a.out" - -Detecting C compiler ABI info compiled with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-gMkw5J - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_ad1f9 && [1/2] Building C object CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccKtXVYB.s -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o /tmp/ccKtXVYB.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64' -[2/2] Linking C executable cmTC_ad1f9 -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ad1f9' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9rhd2S.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_ad1f9 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ad1f9' '-mtune=generic' '-march=x86-64' - - - -Parsed C implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include] - - -Parsed C implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-gMkw5J] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_ad1f9 && [1/2] Building C object CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompilerABI.c -quiet -dumpbase CMakeCCompilerABI.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccKtXVYB.s] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o /tmp/ccKtXVYB.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o' '-c' '-mtune=generic' '-march=x86-64'] - ignore line: [[2/2] Linking C executable cmTC_ad1f9] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_ad1f9' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc9rhd2S.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_ad1f9 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o -lgcc --push-state --as-needed -lgcc_s --pop-state -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cc9rhd2S.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_ad1f9] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_ad1f9.dir/CMakeCCompilerABI.c.o] ==> ignore - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [gcc;gcc_s;c;gcc;gcc_s] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -Detecting CXX compiler ABI info compiled with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-6xDObL - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_6c85d && [1/2] Building CXX object CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccz5Vk5B.s -GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7" -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/include/c++/7 - /usr/include/x86_64-linux-gnu/c++/7 - /usr/include/c++/7/backward - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07 -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - as -v --64 -o CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccz5Vk5B.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' -[2/2] Linking CXX executable cmTC_6c85d -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6c85d' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccIEn0KT.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_6c85d /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o -COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6c85d' '-shared-libgcc' '-mtune=generic' '-march=x86-64' - - - -Parsed CXX implicit include dir info from above output: rv=done - found start of include info - found start of implicit include info - add: [/usr/include/c++/7] - add: [/usr/include/x86_64-linux-gnu/c++/7] - add: [/usr/include/c++/7/backward] - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include] - add: [/usr/local/include] - add: [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - add: [/usr/include/x86_64-linux-gnu] - add: [/usr/include] - end of search list found - collapse include dir [/usr/include/c++/7] ==> [/usr/include/c++/7] - collapse include dir [/usr/include/x86_64-linux-gnu/c++/7] ==> [/usr/include/x86_64-linux-gnu/c++/7] - collapse include dir [/usr/include/c++/7/backward] ==> [/usr/include/c++/7/backward] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include] - collapse include dir [/usr/local/include] ==> [/usr/local/include] - collapse include dir [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] ==> [/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - collapse include dir [/usr/include/x86_64-linux-gnu] ==> [/usr/include/x86_64-linux-gnu] - collapse include dir [/usr/include] ==> [/usr/include] - implicit include dirs: [/usr/include/c++/7;/usr/include/x86_64-linux-gnu/c++/7;/usr/include/c++/7/backward;/usr/lib/gcc/x86_64-linux-gnu/7/include;/usr/local/include;/usr/lib/gcc/x86_64-linux-gnu/7/include-fixed;/usr/include/x86_64-linux-gnu;/usr/include] - - -Parsed CXX implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-6xDObL] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_6c85d && [1/2] Building CXX object CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpbase CMakeCXXCompilerABI.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o -version -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccz5Vk5B.s] - ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/include/c++/7] - ignore line: [ /usr/include/x86_64-linux-gnu/c++/7] - ignore line: [ /usr/include/c++/7/backward] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++14 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o /tmp/ccz5Vk5B.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - ignore line: [[2/2] Linking CXX executable cmTC_6c85d] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-v' '-o' 'cmTC_6c85d' '-shared-libgcc' '-mtune=generic' '-march=x86-64'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccIEn0KT.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_6c85d /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm -lgcc_s -lgcc -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccIEn0KT.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_6c85d] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_6c85d.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o] ==> [/usr/lib/x86_64-linux-gnu/Scrt1.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o] ==> [/usr/lib/x86_64-linux-gnu/crti.o] - collapse obj [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o] ==> [/usr/lib/x86_64-linux-gnu/crtn.o] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gcc_s;gcc;c;gcc_s;gcc] - implicit objs: [/usr/lib/x86_64-linux-gnu/Scrt1.o;/usr/lib/x86_64-linux-gnu/crti.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o;/usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o;/usr/lib/x86_64-linux-gnu/crtn.o] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -Determining if the function pthread_create exists in the pthread passed with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-Qgzv2J - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_09113 && [1/2] Building C object CMakeFiles/cmTC_09113.dir/CheckFunctionExists.c.o -[2/2] Linking C executable cmTC_09113 - - - -Detecting C OpenMP compiler ABI info compiled with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-aVRNNI - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_1fbc8 && [1/2] Building C object CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D_REENTRANT /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-aVRNNI/OpenMPTryFlag.c -quiet -dumpbase OpenMPTryFlag.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccQaIcrO.s -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8 -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' - as -v --64 -o CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o /tmp/ccQaIcrO.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread' -[2/2] Linking C executable cmTC_1fbc8 -Using built-in specs. -COLLECT_GCC=/usr/bin/cc -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_1fbc8' '-v' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc32y0P4.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_1fbc8 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o -lgomp -lgcc --push-state --as-needed -lgcc_s --pop-state -lpthread -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_1fbc8' '-v' '-mtune=generic' '-march=x86-64' '-pthread' - - - -Parsed C OpenMP implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-aVRNNI] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_1fbc8 && [1/2] Building C object CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1 -quiet -v -imultiarch x86_64-linux-gnu -D_REENTRANT /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-aVRNNI/OpenMPTryFlag.c -quiet -dumpbase OpenMPTryFlag.c -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccQaIcrO.s] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: b62ed4a2880cd4159476ea8293b72fa8] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o /tmp/ccQaIcrO.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o' '-c' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [[2/2] Linking C executable cmTC_1fbc8] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/cc] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_1fbc8' '-v' '-mtune=generic' '-march=x86-64' '-pthread'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/cc32y0P4.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lgcc_s --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_1fbc8 /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o -lgomp -lgcc --push-state --as-needed -lgcc_s --pop-state -lpthread -lc -lgcc --push-state --as-needed -lgcc_s --pop-state /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/cc32y0P4.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lpthread] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_1fbc8] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_1fbc8.dir/OpenMPTryFlag.c.o] ==> ignore - arg [-lgomp] ==> lib [gomp] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - arg [-lpthread] ==> lib [pthread] - arg [-lc] ==> lib [c] - arg [-lgcc] ==> lib [gcc] - arg [--push-state] ==> ignore - arg [--as-needed] ==> ignore - arg [-lgcc_s] ==> lib [gcc_s] - arg [--pop-state] ==> ignore - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [gomp;gcc;gcc_s;pthread;c;gcc;gcc_s] - implicit objs: [] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - -Detecting CXX OpenMP compiler ABI info compiled with the following output: -Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-dIlyDJ - -Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_41fde && [1/2] Building CXX object CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D_REENTRANT /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-dIlyDJ/OpenMPTryFlag.cpp -quiet -dumpbase OpenMPTryFlag.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o -std=gnu++11 -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccMluUzL.s -GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7" -ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu" -ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include" -#include "..." search starts here: -#include <...> search starts here: - /usr/include/c++/7 - /usr/include/x86_64-linux-gnu/c++/7 - /usr/include/c++/7/backward - /usr/lib/gcc/x86_64-linux-gnu/7/include - /usr/local/include - /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed - /usr/include/x86_64-linux-gnu - /usr/include -End of search list. -GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu) - compiled by GNU C version 7.5.0, GMP version 6.1.2, MPFR version 4.0.1, MPC version 1.1.0, isl version isl-0.19-GMP - -GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072 -Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07 -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - as -v --64 -o CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o /tmp/ccMluUzL.s -GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30 -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' -[2/2] Linking CXX executable cmTC_41fde -Using built-in specs. -COLLECT_GCC=/usr/bin/c++ -COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -OFFLOAD_TARGET_NAMES=nvptx-none -OFFLOAD_TARGET_DEFAULT=1 -Target: x86_64-linux-gnu -Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu -Thread model: posix -gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) -COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/ -LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/ -Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_41fde' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccQznqF6.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_41fde /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o -lstdc++ -lm -lgomp -lgcc_s -lgcc -lpthread -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o -COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_41fde' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread' - - - -Parsed CXX OpenMP implicit link information from above output: - link line regex: [^( *|.*[/\])(ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] - ignore line: [Change Dir: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-dIlyDJ] - ignore line: [] - ignore line: [Run Build Command(s):/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja cmTC_41fde && [1/2] Building CXX object CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/cc1plus -quiet -v -imultiarch x86_64-linux-gnu -D_GNU_SOURCE -D_REENTRANT /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/CMakeScratch/TryCompile-dIlyDJ/OpenMPTryFlag.cpp -quiet -dumpbase OpenMPTryFlag.cpp -mtune=generic -march=x86-64 -auxbase-strip CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o -std=gnu++11 -version -fopenmp -fstack-protector-strong -Wformat -Wformat-security -o /tmp/ccMluUzL.s] - ignore line: [GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [ignoring duplicate directory "/usr/include/x86_64-linux-gnu/c++/7"] - ignore line: [ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"] - ignore line: [ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/7/../../../../x86_64-linux-gnu/include"] - ignore line: [#include "..." search starts here:] - ignore line: [#include <...> search starts here:] - ignore line: [ /usr/include/c++/7] - ignore line: [ /usr/include/x86_64-linux-gnu/c++/7] - ignore line: [ /usr/include/c++/7/backward] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include] - ignore line: [ /usr/local/include] - ignore line: [ /usr/lib/gcc/x86_64-linux-gnu/7/include-fixed] - ignore line: [ /usr/include/x86_64-linux-gnu] - ignore line: [ /usr/include] - ignore line: [End of search list.] - ignore line: [GNU C++11 (Ubuntu 7.5.0-3ubuntu1~18.04) version 7.5.0 (x86_64-linux-gnu)] - ignore line: [ compiled by GNU C version 7.5.0 GMP version 6.1.2 MPFR version 4.0.1 MPC version 1.1.0 isl version isl-0.19-GMP] - ignore line: [] - ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072] - ignore line: [Compiler executable checksum: 3eb3dc290cd5714c3e1c3ae751116f07] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [ as -v --64 -o CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o /tmp/ccMluUzL.s] - ignore line: [GNU assembler version 2.30 (x86_64-linux-gnu) using BFD version (GNU Binutils for Ubuntu) 2.30] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-std=gnu++11' '-o' 'CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o' '-c' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - ignore line: [[2/2] Linking CXX executable cmTC_41fde] - ignore line: [Using built-in specs.] - ignore line: [COLLECT_GCC=/usr/bin/c++] - ignore line: [COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] - ignore line: [OFFLOAD_TARGET_NAMES=nvptx-none] - ignore line: [OFFLOAD_TARGET_DEFAULT=1] - ignore line: [Target: x86_64-linux-gnu] - ignore line: [Configured with: ../src/configure -v --with-pkgversion='Ubuntu 7.5.0-3ubuntu1~18.04' --with-bugurl=file:///usr/share/doc/gcc-7/README.Bugs --enable-languages=c ada c++ go brig d fortran objc obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-7 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --enable-bootstrap --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32 m64 mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu] - ignore line: [Thread model: posix] - ignore line: [gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04) ] - ignore line: [COMPILER_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/] - ignore line: [LIBRARY_PATH=/usr/lib/gcc/x86_64-linux-gnu/7/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib/:/lib/x86_64-linux-gnu/:/lib/../lib/:/usr/lib/x86_64-linux-gnu/:/usr/lib/../lib/:/usr/lib/gcc/x86_64-linux-gnu/7/../../../:/lib/:/usr/lib/] - ignore line: [Reading specs from /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.spec] - ignore line: [COLLECT_GCC_OPTIONS='-fopenmp' '-v' '-o' 'cmTC_41fde' '-v' '-shared-libgcc' '-mtune=generic' '-march=x86-64' '-pthread'] - link line: [ /usr/lib/gcc/x86_64-linux-gnu/7/collect2 -plugin /usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so -plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper -plugin-opt=-fresolution=/tmp/ccQznqF6.res -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lpthread -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc_s -plugin-opt=-pass-through=-lgcc --build-id --eh-frame-hdr -m elf_x86_64 --hash-style=gnu --as-needed -dynamic-linker /lib64/ld-linux-x86-64.so.2 -pie -z now -z relro -o cmTC_41fde /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/Scrt1.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crti.o /usr/lib/gcc/x86_64-linux-gnu/7/crtbeginS.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadbegin.o -L/usr/lib/gcc/x86_64-linux-gnu/7 -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu -L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib -L/lib/x86_64-linux-gnu -L/lib/../lib -L/usr/lib/x86_64-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/7/../../.. CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o -lstdc++ -lm -lgomp -lgcc_s -lgcc -lpthread -lc -lgcc_s -lgcc /usr/lib/gcc/x86_64-linux-gnu/7/crtendS.o /usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu/crtn.o /usr/lib/gcc/x86_64-linux-gnu/7/crtoffloadend.o] - arg [/usr/lib/gcc/x86_64-linux-gnu/7/collect2] ==> ignore - arg [-plugin] ==> ignore - arg [/usr/lib/gcc/x86_64-linux-gnu/7/liblto_plugin.so] ==> ignore - arg [-plugin-opt=/usr/lib/gcc/x86_64-linux-gnu/7/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccQznqF6.res] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [-plugin-opt=-pass-through=-lpthread] ==> ignore - arg [-plugin-opt=-pass-through=-lc] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc_s] ==> ignore - arg [-plugin-opt=-pass-through=-lgcc] ==> ignore - arg [--build-id] ==> ignore - arg [--eh-frame-hdr] ==> ignore - arg [-m] ==> ignore - arg [elf_x86_64] ==> ignore - arg [--hash-style=gnu] ==> ignore - arg [--as-needed] ==> ignore - arg [-dynamic-linker] ==> ignore - arg [/lib64/ld-linux-x86-64.so.2] ==> ignore - arg [-pie] ==> ignore - arg [-znow] ==> ignore - arg [-zrelro] ==> ignore - arg [-o] ==> ignore - arg [cmTC_41fde] ==> ignore - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] - arg [-L/lib/x86_64-linux-gnu] ==> dir [/lib/x86_64-linux-gnu] - arg [-L/lib/../lib] ==> dir [/lib/../lib] - arg [-L/usr/lib/x86_64-linux-gnu] ==> dir [/usr/lib/x86_64-linux-gnu] - arg [-L/usr/lib/../lib] ==> dir [/usr/lib/../lib] - arg [-L/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] - arg [CMakeFiles/cmTC_41fde.dir/OpenMPTryFlag.cpp.o] ==> ignore - arg [-lstdc++] ==> lib [stdc++] - arg [-lm] ==> lib [m] - arg [-lgomp] ==> lib [gomp] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - arg [-lpthread] ==> lib [pthread] - arg [-lc] ==> lib [c] - arg [-lgcc_s] ==> lib [gcc_s] - arg [-lgcc] ==> lib [gcc] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7] ==> [/usr/lib/gcc/x86_64-linux-gnu/7] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../../../lib] ==> [/usr/lib] - collapse library dir [/lib/x86_64-linux-gnu] ==> [/lib/x86_64-linux-gnu] - collapse library dir [/lib/../lib] ==> [/lib] - collapse library dir [/usr/lib/x86_64-linux-gnu] ==> [/usr/lib/x86_64-linux-gnu] - collapse library dir [/usr/lib/../lib] ==> [/usr/lib] - collapse library dir [/usr/lib/gcc/x86_64-linux-gnu/7/../../..] ==> [/usr/lib] - implicit libs: [stdc++;m;gomp;gcc_s;gcc;pthread;c;gcc_s;gcc] - implicit objs: [] - implicit dirs: [/usr/lib/gcc/x86_64-linux-gnu/7;/usr/lib/x86_64-linux-gnu;/usr/lib;/lib/x86_64-linux-gnu;/lib] - implicit fwks: [] - - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/FindOpenMP/ompver_C.bin b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/FindOpenMP/ompver_C.bin deleted file mode 100755 index e9a9b3ed52d7601dc8f4ffd7a094e2eac51213db..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/FindOpenMP/ompver_C.bin and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/FindOpenMP/ompver_CXX.bin b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/FindOpenMP/ompver_CXX.bin deleted file mode 100755 index 8ca1385a7b3211d4385df65d45d8db4c335202d8..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/FindOpenMP/ompver_CXX.bin and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/TargetDirectories.txt b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/TargetDirectories.txt deleted file mode 100644 index 3aeea52193267fa28add26d20cf34a1f0950034a..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/TargetDirectories.txt +++ /dev/null @@ -1,29 +0,0 @@ -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/uninstall.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/lammps.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/edit_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/rebuild_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/list_install_components.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/install.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/install/local.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/install/strip.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/edit_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/rebuild_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/list_install_components.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/install.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/install/local.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/install/strip.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/edit_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/rebuild_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/list_install_components.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/install.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/install/local.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/install/strip.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/CMakeFiles/edit_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/CMakeFiles/rebuild_cache.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/CMakeFiles/list_install_components.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/CMakeFiles/install.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/CMakeFiles/install/local.dir -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/CMakeFiles/install/strip.dir diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/cmake.check_cache b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/cmake.check_cache deleted file mode 100644 index 3dccd731726d7faa8b29d8d7dba3b981a53ca497..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/cmake.check_cache +++ /dev/null @@ -1 +0,0 @@ -# This file is generated by cmake for dependency checking of the CMakeCache.txt file diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/rules.ninja b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/rules.ninja deleted file mode 100644 index a21dd175cb54310d91cc1c0a01ecb2d3b352bd93..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeFiles/rules.ninja +++ /dev/null @@ -1,102 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.25 - -# This file contains all the rules used to get the outputs files -# built from the input files. -# It is included in the main 'build.ninja'. - -# ============================================================================= -# Project: DeePMD -# Configurations: Release -# ============================================================================= -# ============================================================================= - -############################################# -# Rule for running custom commands. - -rule CUSTOM_COMMAND - command = $COMMAND - description = $DESC - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__op_abi_Release - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/c++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared module. - -rule CXX_MODULE_LIBRARY_LINKER__op_abi_Release - command = $PRE_LINK && /usr/bin/c++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared module $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__op_grads_Release - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/c++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared module. - -rule CXX_MODULE_LIBRARY_LINKER__op_grads_Release - command = $PRE_LINK && /usr/bin/c++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared module $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for compiling CXX files. - -rule CXX_COMPILER__deepmd_Release - depfile = $DEP_FILE - deps = gcc - command = /usr/bin/c++ $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in - description = Building CXX object $out - - -############################################# -# Rule for linking CXX shared library. - -rule CXX_SHARED_LIBRARY_LINKER__deepmd_Release - command = $PRE_LINK && /usr/bin/c++ -fPIC $LANGUAGE_COMPILE_FLAGS $ARCH_FLAGS $LINK_FLAGS -shared $SONAME_FLAG$SONAME -o $TARGET_FILE $in $LINK_PATH $LINK_LIBRARIES && $POST_BUILD - description = Linking CXX shared library $TARGET_FILE - restat = $RESTAT - - -############################################# -# Rule for re-running cmake. - -rule RERUN_CMAKE - command = /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake --regenerate-during-build -S/root/deepmd-kit/source -B/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - description = Re-running CMake... - generator = 1 - - -############################################# -# Rule for cleaning all built files. - -rule CLEAN - command = /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja $FILE_ARG -t clean $TARGETS - description = Cleaning all built files... - - -############################################# -# Rule for printing all primary targets available. - -rule HELP - command = /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/ninja/data/bin/ninja -t targets - description = All primary targets available: - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeSpec.json b/_skbuild/linux-x86_64-3.6/cmake-build/CMakeSpec.json deleted file mode 100644 index 6b3078de87ea303688be255a8b1eeceaec2b68c1..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/CMakeSpec.json +++ /dev/null @@ -1 +0,0 @@ -{"args": ["/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake", "-DTENSORFLOW_ROOT:STRING=/usr/local/lib/python3.6/dist-packages/tensorflow", "-DBUILD_PY_IF:BOOL=TRUE", "-DBUILD_CPP_IF:BOOL=FALSE", "-DCMAKE_BUILD_TYPE:STRING=Release"], "version": "3.25.2", "environment": {"PYTHONNOUSERSITE": "1", "PYTHONPATH": "/tmp/pip-build-env-5_1o2n9q/site"}} \ No newline at end of file diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/build.ninja b/_skbuild/linux-x86_64-3.6/cmake-build/build.ninja deleted file mode 100644 index 719876405ce81aca8e9058dcf36b85e568e225a4..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/build.ninja +++ /dev/null @@ -1,1105 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Ninja" Generator, CMake Version 3.25 - -# This file contains all the build statements describing the -# compilation DAG. - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# -# Which is the root file. -# ============================================================================= - -# ============================================================================= -# Project: DeePMD -# Configurations: Release -# ============================================================================= - -############################################# -# Minimal version of Ninja required by this file - -ninja_required_version = 1.5 - - -############################################# -# Set configuration variable for custom commands. - -CONFIGURATION = Release -# ============================================================================= -# Include auxiliary files. - - -############################################# -# Include rules file. - -include CMakeFiles/rules.ninja - -# ============================================================================= - -############################################# -# Logical path to working directory; prefix for absolute paths. - -cmake_ninja_workdir = /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/ - -############################################# -# Utility command for uninstall - -build uninstall: phony CMakeFiles/uninstall - - -############################################# -# Utility command for lammps - -build lammps: phony CMakeFiles/lammps - - -############################################# -# Utility command for edit_cache - -build CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. - DESC = No interactive CMake dialog available... - restat = 1 - -build edit_cache: phony CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake --regenerate-during-build -S/root/deepmd-kit/source -B/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build rebuild_cache: phony CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build list_install_components: phony - - -############################################# -# Utility command for install - -build CMakeFiles/install.util: CUSTOM_COMMAND all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build install: phony CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build CMakeFiles/install/local.util: CUSTOM_COMMAND all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build install/local: phony CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build CMakeFiles/install/strip.util: CUSTOM_COMMAND all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build install/strip: phony CMakeFiles/install/strip.util - - -############################################# -# Custom command for CMakeFiles/uninstall - -build CMakeFiles/uninstall | ${cmake_ninja_workdir}CMakeFiles/uninstall: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -P /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/cmake_uninstall.cmake - - -############################################# -# Custom command for CMakeFiles/lammps - -build CMakeFiles/lammps | ${cmake_ninja_workdir}CMakeFiles/lammps: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -P /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/cmake_lammps.cmake - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /root/deepmd-kit/source/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for MODULE_LIBRARY target op_abi - - -############################################# -# Order-only phony target for op_abi - -build cmake_object_order_depends_target_op_abi: phony || cmake_object_order_depends_target_deepmd - -build op/CMakeFiles/op_abi.dir/custom_op.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/custom_op.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/custom_op.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/descrpt.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/descrpt.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/descrpt.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/descrpt_se_a_ef.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/descrpt_se_a_ef_para.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/descrpt_se_a_ef_vert.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/ewald_recp.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/ewald_recp.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/ewald_recp.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/gelu_multi_device.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/map_aparam.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/map_aparam.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/map_aparam.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/map_nvnmd.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/matmul_nvnmd.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/neighbor_stat.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/pair_tab.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/pair_tab.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/pair_tab.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/prod_env_mat_multi_device.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/prod_env_mat_multi_device_nvnmd.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/prod_force.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/prod_force.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/prod_force.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/prod_force_multi_device.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/prod_virial.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/prod_virial.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/prod_virial.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/prod_virial_multi_device.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/quantize_nvnmd.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/soft_min.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/soft_min.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/soft_min.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/soft_min_force.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/soft_min_force.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/soft_min_force.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/soft_min_virial.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/tabulate_multi_device.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/tanh2_nvnmd.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/tanh4_nvnmd.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/unaggregated_grad.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/lib/src/SimulationRegion.cpp || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir/__/lib/src - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/lib/src/neighbor_list.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir/__/lib/src - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - -build op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o: CXX_COMPILER__op_abi_Release /root/deepmd-kit/source/op/optimizer/parallel.cc || cmake_object_order_depends_target_op_abi - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_abi_EXPORTS - DEP_FILE = op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_abi.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_abi.dir/optimizer - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_PDB = op/libop_abi.pdb - - -# ============================================================================= -# Link build statements for MODULE_LIBRARY target op_abi - - -############################################# -# Link the shared module op/libop_abi.so - -build op/libop_abi.so: CXX_MODULE_LIBRARY_LINKER__op_abi_Release op/CMakeFiles/op_abi.dir/custom_op.cc.o op/CMakeFiles/op_abi.dir/descrpt.cc.o op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o op/CMakeFiles/op_abi.dir/ewald_recp.cc.o op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o op/CMakeFiles/op_abi.dir/map_aparam.cc.o op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o op/CMakeFiles/op_abi.dir/pair_tab.cc.o op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o op/CMakeFiles/op_abi.dir/prod_force.cc.o op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o op/CMakeFiles/op_abi.dir/prod_virial.cc.o op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o op/CMakeFiles/op_abi.dir/soft_min.cc.o op/CMakeFiles/op_abi.dir/soft_min_force.cc.o op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o | lib/libdeepmd.so /usr/local/lib/python3.6/dist-packages/tensorflow/libtensorflow_framework.so.2 || lib/libdeepmd.so - LANGUAGE_COMPILE_FLAGS = -fopenmp -O3 -DNDEBUG - LINK_LIBRARIES = -Wl,-rpath,/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib:/usr/local/lib/python3.6/dist-packages/tensorflow: lib/libdeepmd.so /usr/local/lib/python3.6/dist-packages/tensorflow/libtensorflow_framework.so.2 - OBJECT_DIR = op/CMakeFiles/op_abi.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = op/CMakeFiles/op_abi.dir/ - TARGET_FILE = op/libop_abi.so - TARGET_PDB = op/libop_abi.pdb - -# ============================================================================= -# Object build statements for MODULE_LIBRARY target op_grads - - -############################################# -# Order-only phony target for op_grads - -build cmake_object_order_depends_target_op_grads: phony || cmake_object_order_depends_target_deepmd - -build op/CMakeFiles/op_grads.dir/custom_op.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/custom_op.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/custom_op.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - -build op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/prod_force_grad.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - -build op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/prod_force_grad_multi_device.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - -build op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/prod_virial_grad.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - -build op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/prod_virial_grad_multi_device.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - -build op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/soft_min_force_grad.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - -build op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o: CXX_COMPILER__op_grads_Release /root/deepmd-kit/source/op/soft_min_virial_grad.cc || cmake_object_order_depends_target_op_grads - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Dop_grads_EXPORTS - DEP_FILE = op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/usr/local/lib/python3.6/dist-packages/tensorflow/include -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = op/CMakeFiles/op_grads.dir - OBJECT_FILE_DIR = op/CMakeFiles/op_grads.dir - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_PDB = op/libop_grads.pdb - - -# ============================================================================= -# Link build statements for MODULE_LIBRARY target op_grads - - -############################################# -# Link the shared module op/libop_grads.so - -build op/libop_grads.so: CXX_MODULE_LIBRARY_LINKER__op_grads_Release op/CMakeFiles/op_grads.dir/custom_op.cc.o op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o | lib/libdeepmd.so /usr/local/lib/python3.6/dist-packages/tensorflow/libtensorflow_framework.so.2 || lib/libdeepmd.so - LANGUAGE_COMPILE_FLAGS = -fopenmp -O3 -DNDEBUG - LINK_LIBRARIES = -Wl,-rpath,/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib:/usr/local/lib/python3.6/dist-packages/tensorflow: lib/libdeepmd.so /usr/local/lib/python3.6/dist-packages/tensorflow/libtensorflow_framework.so.2 - OBJECT_DIR = op/CMakeFiles/op_grads.dir - POST_BUILD = : - PRE_LINK = : - TARGET_COMPILE_PDB = op/CMakeFiles/op_grads.dir/ - TARGET_FILE = op/libop_grads.so - TARGET_PDB = op/libop_grads.pdb - - -############################################# -# Utility command for edit_cache - -build op/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. - DESC = No interactive CMake dialog available... - restat = 1 - -build op/edit_cache: phony op/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build op/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake --regenerate-during-build -S/root/deepmd-kit/source -B/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build op/rebuild_cache: phony op/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build op/list_install_components: phony - - -############################################# -# Utility command for install - -build op/CMakeFiles/install.util: CUSTOM_COMMAND op/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build op/install: phony op/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build op/CMakeFiles/install/local.util: CUSTOM_COMMAND op/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build op/install/local: phony op/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build op/CMakeFiles/install/strip.util: CUSTOM_COMMAND op/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build op/install/strip: phony op/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /root/deepmd-kit/source/CMakeLists.txt -# ============================================================================= - -# ============================================================================= -# Object build statements for SHARED_LIBRARY target deepmd - - -############################################# -# Order-only phony target for deepmd - -build cmake_object_order_depends_target_deepmd: phony || lib/CMakeFiles/deepmd.dir - -build lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/SimulationRegion.cpp || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/coord.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/coord.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/coord.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/env_mat.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/env_mat_nvnmd.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/ewald.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/ewald.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/ewald.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/fmt_nlist.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/gelu.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/gelu.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/gelu.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/map_aparam.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/neighbor_list.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/pair_tab.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/prod_env_mat.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/prod_env_mat_nvnmd.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/prod_force.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/prod_force_grad.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/prod_virial.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/prod_virial_grad.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/region.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/region.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/region.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/soft_min_switch.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/soft_min_switch_force.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/soft_min_switch_force_grad.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/soft_min_switch_virial.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/soft_min_switch_virial_grad.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/tabulate.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - -build lib/CMakeFiles/deepmd.dir/src/utilities.cc.o: CXX_COMPILER__deepmd_Release /root/deepmd-kit/source/lib/src/utilities.cc || cmake_object_order_depends_target_deepmd - DEFINES = -D_GLIBCXX_USE_CXX11_ABI=0 -Ddeepmd_EXPORTS - DEP_FILE = lib/CMakeFiles/deepmd.dir/src/utilities.cc.o.d - FLAGS = -fopenmp -O3 -DNDEBUG -fPIC -std=gnu++11 - INCLUDES = -I/root/deepmd-kit/source/lib/include - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - OBJECT_FILE_DIR = lib/CMakeFiles/deepmd.dir/src - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_PDB = lib/libdeepmd.pdb - - -# ============================================================================= -# Link build statements for SHARED_LIBRARY target deepmd - - -############################################# -# Link the shared library lib/libdeepmd.so - -build lib/libdeepmd.so: CXX_SHARED_LIBRARY_LINKER__deepmd_Release lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o lib/CMakeFiles/deepmd.dir/src/coord.cc.o lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o lib/CMakeFiles/deepmd.dir/src/ewald.cc.o lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o lib/CMakeFiles/deepmd.dir/src/gelu.cc.o lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o lib/CMakeFiles/deepmd.dir/src/region.cc.o lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o lib/CMakeFiles/deepmd.dir/src/utilities.cc.o - LANGUAGE_COMPILE_FLAGS = -fopenmp -O3 -DNDEBUG - LINK_LIBRARIES = -Wl,-rpath,::::::: - OBJECT_DIR = lib/CMakeFiles/deepmd.dir - POST_BUILD = : - PRE_LINK = : - SONAME = libdeepmd.so - SONAME_FLAG = -Wl,-soname, - TARGET_COMPILE_PDB = lib/CMakeFiles/deepmd.dir/ - TARGET_FILE = lib/libdeepmd.so - TARGET_PDB = lib/libdeepmd.pdb - - -############################################# -# Utility command for edit_cache - -build lib/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. - DESC = No interactive CMake dialog available... - restat = 1 - -build lib/edit_cache: phony lib/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build lib/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake --regenerate-during-build -S/root/deepmd-kit/source -B/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build lib/rebuild_cache: phony lib/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build lib/list_install_components: phony - - -############################################# -# Utility command for install - -build lib/CMakeFiles/install.util: CUSTOM_COMMAND lib/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build lib/install: phony lib/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build lib/CMakeFiles/install/local.util: CUSTOM_COMMAND lib/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build lib/install/local: phony lib/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build lib/CMakeFiles/install/strip.util: CUSTOM_COMMAND lib/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build lib/install/strip: phony lib/CMakeFiles/install/strip.util - -# ============================================================================= -# Write statements declared in CMakeLists.txt: -# /root/deepmd-kit/source/CMakeLists.txt -# ============================================================================= - - -############################################# -# Utility command for edit_cache - -build config/CMakeFiles/edit_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available. - DESC = No interactive CMake dialog available... - restat = 1 - -build config/edit_cache: phony config/CMakeFiles/edit_cache.util - - -############################################# -# Utility command for rebuild_cache - -build config/CMakeFiles/rebuild_cache.util: CUSTOM_COMMAND - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake --regenerate-during-build -S/root/deepmd-kit/source -B/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - DESC = Running CMake to regenerate build system... - pool = console - restat = 1 - -build config/rebuild_cache: phony config/CMakeFiles/rebuild_cache.util - - -############################################# -# Utility command for list_install_components - -build config/list_install_components: phony - - -############################################# -# Utility command for install - -build config/CMakeFiles/install.util: CUSTOM_COMMAND config/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -P cmake_install.cmake - DESC = Install the project... - pool = console - restat = 1 - -build config/install: phony config/CMakeFiles/install.util - - -############################################# -# Utility command for install/local - -build config/CMakeFiles/install/local.util: CUSTOM_COMMAND config/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_LOCAL_ONLY=1 -P cmake_install.cmake - DESC = Installing only the local directory... - pool = console - restat = 1 - -build config/install/local: phony config/CMakeFiles/install/local.util - - -############################################# -# Utility command for install/strip - -build config/CMakeFiles/install/strip.util: CUSTOM_COMMAND config/all - COMMAND = cd /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config && /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake -DCMAKE_INSTALL_DO_STRIP=1 -P cmake_install.cmake - DESC = Installing the project stripped... - pool = console - restat = 1 - -build config/install/strip: phony config/CMakeFiles/install/strip.util - -# ============================================================================= -# Target aliases. - -build deepmd: phony lib/libdeepmd.so - -build libdeepmd.so: phony lib/libdeepmd.so - -build libop_abi.so: phony op/libop_abi.so - -build libop_grads.so: phony op/libop_grads.so - -build op_abi: phony op/libop_abi.so - -build op_grads: phony op/libop_grads.so - -# ============================================================================= -# Folder targets. - -# ============================================================================= - -############################################# -# Folder: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build - -build all: phony op/all lib/all config/all - -# ============================================================================= - -############################################# -# Folder: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config - -build config/all: phony - -# ============================================================================= - -############################################# -# Folder: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib - -build lib/all: phony lib/libdeepmd.so - -# ============================================================================= - -############################################# -# Folder: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op - -build op/all: phony op/libop_abi.so op/libop_grads.so - -# ============================================================================= -# Built-in targets - - -############################################# -# Re-run CMake if any of its inputs changed. - -build build.ninja: RERUN_CMAKE | /root/deepmd-kit/source/CMakeLists.txt /root/deepmd-kit/source/cmake/Findtensorflow.cmake /root/deepmd-kit/source/cmake/cmake_lammps.cmake.in /root/deepmd-kit/source/cmake/cmake_uninstall.cmake.in /root/deepmd-kit/source/cmake/tf_version.cpp /root/deepmd-kit/source/config/CMakeLists.txt /root/deepmd-kit/source/config/run_config.ini /root/deepmd-kit/source/lib/CMakeLists.txt /root/deepmd-kit/source/op/CMakeLists.txt /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompiler.cmake.in /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompilerABI.c /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompiler.cmake.in /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCommonLanguageInclude.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCompilerIdDetection.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCXXCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompileFeatures.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompilerABI.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompilerId.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineSystem.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeFindBinUtils.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeGenericSystem.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeInitializeConfigs.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeLanguageInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeParseImplicitIncludeInfo.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeParseImplicitLinkInfo.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeParseLibraryArchitecture.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeSystem.cmake.in /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeSystemSpecificInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeSystemSpecificInitialize.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeTestCCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeTestCXXCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeTestCompilerCommon.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CheckCSourceCompiles.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CheckIncludeFile.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CheckLibraryExists.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/ADSP-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/ARMCC-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/ARMClang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/AppleClang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Borland-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/CMakeCommonCompilerMacros.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Cray-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GHS-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-C.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-CXX.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-FindBinUtils.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/HP-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IAR-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Intel-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/LCC-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/MSVC-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/NVHPC-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/PGI-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/PathScale-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SCO-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/TI-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Tasking-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Watcom-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XL-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/zOS-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindGit.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindOpenMP.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindPackageHandleStandardArgs.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindPackageMessage.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindThreads.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Internal/CheckSourceCompiles.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Internal/FeatureTesting.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-Determine-CXX.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-GNU-C.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-GNU-CXX.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-GNU.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/UnixPaths.cmake CMakeCache.txt CMakeFiles/3.25.2/CMakeCCompiler.cmake CMakeFiles/3.25.2/CMakeCXXCompiler.cmake CMakeFiles/3.25.2/CMakeSystem.cmake - pool = console - - -############################################# -# A missing CMake input file is not an error. - -build /root/deepmd-kit/source/CMakeLists.txt /root/deepmd-kit/source/cmake/Findtensorflow.cmake /root/deepmd-kit/source/cmake/cmake_lammps.cmake.in /root/deepmd-kit/source/cmake/cmake_uninstall.cmake.in /root/deepmd-kit/source/cmake/tf_version.cpp /root/deepmd-kit/source/config/CMakeLists.txt /root/deepmd-kit/source/config/run_config.ini /root/deepmd-kit/source/lib/CMakeLists.txt /root/deepmd-kit/source/op/CMakeLists.txt /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompiler.cmake.in /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCCompilerABI.c /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompiler.cmake.in /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXCompilerABI.cpp /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCXXInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCommonLanguageInclude.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeCompilerIdDetection.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCXXCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompileFeatures.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompilerABI.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineCompilerId.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeDetermineSystem.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeFindBinUtils.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeGenericSystem.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeInitializeConfigs.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeLanguageInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeParseImplicitIncludeInfo.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeParseImplicitLinkInfo.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeParseLibraryArchitecture.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeSystem.cmake.in /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeSystemSpecificInformation.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeSystemSpecificInitialize.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeTestCCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeTestCXXCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CMakeTestCompilerCommon.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CheckCSourceCompiles.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CheckIncludeFile.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/CheckLibraryExists.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/ADSP-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/ARMCC-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/ARMClang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/AppleClang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Borland-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Bruce-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/CMakeCommonCompilerMacros.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Clang-DetermineCompilerInternal.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Compaq-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Compaq-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Cray-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Embarcadero-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Fujitsu-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/FujitsuClang-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GHS-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-C.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-CXX.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU-FindBinUtils.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/GNU.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/HP-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/HP-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IAR-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMCPP-C-DetermineVersionInternal.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMCPP-CXX-DetermineVersionInternal.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMClang-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IBMClang-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Intel-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/IntelLLVM-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/LCC-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/LCC-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/MSVC-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/NVHPC-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/NVIDIA-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/OpenWatcom-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/PGI-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/PathScale-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SCO-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SDCC-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SunPro-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/SunPro-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/TI-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Tasking-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/TinyCC-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/VisualAge-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/VisualAge-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/Watcom-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XL-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XL-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XLClang-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/XLClang-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/zOS-C-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Compiler/zOS-CXX-DetermineCompiler.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindGit.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindOpenMP.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindPackageHandleStandardArgs.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindPackageMessage.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/FindThreads.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Internal/CheckSourceCompiles.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Internal/FeatureTesting.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-Determine-CXX.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-GNU-C.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-GNU-CXX.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux-GNU.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/Linux.cmake /tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/share/cmake-3.25/Modules/Platform/UnixPaths.cmake CMakeCache.txt CMakeFiles/3.25.2/CMakeCCompiler.cmake CMakeFiles/3.25.2/CMakeCXXCompiler.cmake CMakeFiles/3.25.2/CMakeSystem.cmake: phony - - -############################################# -# Clean all the built files. - -build clean: CLEAN - - -############################################# -# Print all primary targets available. - -build help: HELP - - -############################################# -# Make the all target the default. - -default all diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/cmake_install.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/cmake_install.cmake deleted file mode 100644 index 5826cf1467faf74b414ca4fc009573989ae87c6b..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/cmake_install.cmake +++ /dev/null @@ -1,62 +0,0 @@ -# Install script for directory: /root/deepmd-kit/source - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Release") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "1") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(NOT CMAKE_INSTALL_LOCAL_ONLY) - # Include the install script for each subdirectory. - include("/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/cmake_install.cmake") - include("/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/cmake_install.cmake") - include("/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/cmake_install.cmake") - -endif() - -if(CMAKE_INSTALL_COMPONENT) - set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt") -else() - set(CMAKE_INSTALL_MANIFEST "install_manifest.txt") -endif() - -string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT - "${CMAKE_INSTALL_MANIFEST_FILES}") -file(WRITE "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/${CMAKE_INSTALL_MANIFEST}" - "${CMAKE_INSTALL_MANIFEST_CONTENT}") diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/cmake_lammps.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/cmake_lammps.cmake deleted file mode 100644 index 684b8df52c99af395de763d5fa8e2509233787e2..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/cmake_lammps.cmake +++ /dev/null @@ -1,28 +0,0 @@ -set (LMP_INSTALL_PREFIX "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/USER-DEEPMD") -file(READ "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lmp/lammps_install_list.txt" files) -string(REGEX REPLACE "\n" "" files "${files}") - -foreach (cur_file ${files}) - file ( - INSTALL DESTINATION "${LMP_INSTALL_PREFIX}" - TYPE FILE - FILES "${cur_file}" - ) -endforeach () - -file ( - INSTALL DESTINATION "${LMP_INSTALL_PREFIX}" - TYPE FILE - FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lmp/env.sh" -) -file ( - INSTALL DESTINATION "${LMP_INSTALL_PREFIX}" - TYPE FILE - FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lmp/env_low.sh" -) - -file ( - INSTALL DESTINATION "${LMP_INSTALL_PREFIX}" - TYPE FILE - FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lmp/pair_deepmd.h" -) diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/cmake_uninstall.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/cmake_uninstall.cmake deleted file mode 100644 index a38afa15a9895087e3a006da10791618457cda8b..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/cmake_uninstall.cmake +++ /dev/null @@ -1,21 +0,0 @@ -if(NOT EXISTS "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt") - message(FATAL_ERROR "Cannot find install manifest: /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt") -endif(NOT EXISTS "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt") - -file(READ "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt" files) -string(REGEX REPLACE "\n" ";" files "${files}") -foreach(file ${files}) - message(STATUS "Uninstalling $ENV{DESTDIR}${file}") - if(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}") - exec_program( - "/tmp/pip-build-env-5_1o2n9q/overlay/lib/python3.6/site-packages/cmake/data/bin/cmake" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" - OUTPUT_VARIABLE rm_out - RETURN_VALUE rm_retval - ) - if(NOT "${rm_retval}" STREQUAL 0) - message(FATAL_ERROR "Problem when removing $ENV{DESTDIR}${file}") - endif(NOT "${rm_retval}" STREQUAL 0) - else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}") - message(STATUS "File $ENV{DESTDIR}${file} does not exist.") - endif(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}") -endforeach(file) diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/config/cmake_install.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/config/cmake_install.cmake deleted file mode 100644 index fffc06911ba4e7984c520ee9fc494de935466383..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/config/cmake_install.cmake +++ /dev/null @@ -1,48 +0,0 @@ -# Install script for directory: /root/deepmd-kit/source/config - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Release") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "1") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/deepmd/pkg_config" TYPE FILE FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/config/run_config.ini") -endif() - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/config/run_config.ini b/_skbuild/linux-x86_64-3.6/cmake-build/config/run_config.ini deleted file mode 100644 index 0a7a1cd6b3440a0864c2d2535a2089e95b0bdb8e..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/config/run_config.ini +++ /dev/null @@ -1,12 +0,0 @@ -[CONFIG] -INSTALL_PREFIX = /root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install -GIT_SUMM = v2.1.5-dirty -GIT_HASH = 6e3d4a62 -GIT_DATE = 2022-09-23 16:10:28 +0800 -GIT_BRANCH = HEAD -TF_INCLUDE_DIR = /usr/local/lib/python3.6/dist-packages/tensorflow/include;/usr/local/lib/python3.6/dist-packages/tensorflow/include -TF_LIBS = -TF_VERSION = 2.4.0 -TF_CXX11_ABI_FLAG = 0 -MODEL_VERSION=1.1 -DP_VARIANT=cpu diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt b/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt deleted file mode 100644 index aab3dddc3b9b3777658bf6e916f7b4396c3abff1..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/install_manifest.txt +++ /dev/null @@ -1,19 +0,0 @@ -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/libop_abi.so -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/libop_grads.so -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_gelu.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_map_nvnmd_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_matmul_nvnmd_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_prod_force_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_prod_force_se_a_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_prod_force_se_r_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_prod_virial_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_prod_virial_se_a_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_prod_virial_se_r_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_quantize_nvnmd_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_soft_min_force_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_soft_min_virial_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_tabulate_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_tanh2_nvnmd_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/_tanh4_nvnmd_grad.py -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/op/libdeepmd.so -/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/pkg_config/run_config.ini \ No newline at end of file diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o deleted file mode 100644 index 564c9271cba5ccf5081ae7a3d1b0f2c56981baaa..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/SimulationRegion.cpp.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/coord.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/coord.cc.o deleted file mode 100644 index 684d5cb55cbb6893bc2b971364ff27da65ff1765..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/coord.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o deleted file mode 100644 index c5f9befd918a1016b2e3efb24e671fc8f7987dca..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/env_mat.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o deleted file mode 100644 index 121fde7666b99a5a5ff7676f7e22c31f1a0ecbfb..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/env_mat_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/ewald.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/ewald.cc.o deleted file mode 100644 index 45c2659e0063c64a8be18d733879fdf9887f67c4..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/ewald.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o deleted file mode 100644 index 3ec77555ab722e66e060681881cfceb57985baac..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/fmt_nlist.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/gelu.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/gelu.cc.o deleted file mode 100644 index 133b2cc9d10a47e45f16e21d334bcc8cec16d247..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/gelu.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o deleted file mode 100644 index 59f34ff1403fee83a212eeaacce07d082c59052e..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/map_aparam.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o deleted file mode 100644 index 2ea8f0ced0dda52a3a7ec42e36244a915e98d542..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/neighbor_list.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o deleted file mode 100644 index 225f76ebbfecc132e7949b9dc715e770e6ab6b3a..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/pair_tab.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o deleted file mode 100644 index 56195ebd9ed47731eb3cd3c7a280f484bd6c7183..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_env_mat.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o deleted file mode 100644 index 8756755bc314e1f74ac40970f926c0a996ecf480..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_env_mat_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o deleted file mode 100644 index 9dcaf1e0405400e16553de1525562f7f084012b1..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_force.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o deleted file mode 100644 index 0ac7d9301e9a860f2ce479e4dcb285154dae0b01..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_force_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o deleted file mode 100644 index 550330d92aed7551b70d8e66710c202caa66e715..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_virial.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o deleted file mode 100644 index d46ba8c8556aeca03eb3da960706dbbde5327b55..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/prod_virial_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/region.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/region.cc.o deleted file mode 100644 index b6471aa9ff1f06ae9da1a4eec899087173c68460..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/region.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o deleted file mode 100644 index b443e51d19e5bdebda50c57a11e69692b27000b8..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o deleted file mode 100644 index 2682f0b36cbedf04d1f5b027395372b1484f01c3..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o deleted file mode 100644 index aa4ddde442d87a5592516538e41598a7858ba502..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_force_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o deleted file mode 100644 index 11ff27ea046f93c4256a6c64658bf784d99d0f76..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o deleted file mode 100644 index db41b765860f8cc4f8d601ebedb73181593cf413..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/soft_min_switch_virial_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o deleted file mode 100644 index 448f968278bc06252b262e8d190e1966bc071844..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/tabulate.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/utilities.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/utilities.cc.o deleted file mode 100644 index e7b35412a8024034191b9a4ddd03784b11139bff..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/CMakeFiles/deepmd.dir/src/utilities.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/cmake_install.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/lib/cmake_install.cmake deleted file mode 100644 index b8ebdc1fc16670ccfb3221632acb49d14ad31c05..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/lib/cmake_install.cmake +++ /dev/null @@ -1,67 +0,0 @@ -# Install script for directory: /root/deepmd-kit/source/lib - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Release") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "1") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so") - file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so" - RPATH "$ORIGIN") - endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/deepmd/op" TYPE SHARED_LIBRARY FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib/libdeepmd.so") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so") - file(RPATH_CHANGE - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so" - OLD_RPATH ":::::::" - NEW_RPATH "$ORIGIN") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libdeepmd.so") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) -endif() - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/lib/libdeepmd.so b/_skbuild/linux-x86_64-3.6/cmake-build/lib/libdeepmd.so deleted file mode 100755 index 4148232d72814524451b2b7ab53d0781bd86228e..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/lib/libdeepmd.so and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o deleted file mode 100644 index 564c9271cba5ccf5081ae7a3d1b0f2c56981baaa..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/__/lib/src/SimulationRegion.cpp.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o deleted file mode 100644 index 2ea8f0ced0dda52a3a7ec42e36244a915e98d542..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/__/lib/src/neighbor_list.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/custom_op.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/custom_op.cc.o deleted file mode 100644 index bf69e410ba3ef834b14a682c5787407bdffdf7e4..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/custom_op.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt.cc.o deleted file mode 100644 index 016bf8f54b90ec38978a1e1f22760205d07e2bc9..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o deleted file mode 100644 index 929db0ddaabe3c16895f21e507316952046af621..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o deleted file mode 100644 index 5e1825f74f07b5da7bf482eec1ff8e25dea52a14..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_para.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o deleted file mode 100644 index 5cb8589aca308ed5e98910efd70d9de249268993..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/descrpt_se_a_ef_vert.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/ewald_recp.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/ewald_recp.cc.o deleted file mode 100644 index 38f8e58620539886ae37ff6f01ba01a2138e1472..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/ewald_recp.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o deleted file mode 100644 index a8ae2d9fb2276779c700ee8d4288daea7caa9998..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/gelu_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/map_aparam.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/map_aparam.cc.o deleted file mode 100644 index e82a259ec2871082830980427b1ac2bbc259a53f..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/map_aparam.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o deleted file mode 100644 index bf18e5ce117ba0ffbb3326ef91f0a7cac59ea2b3..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/map_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o deleted file mode 100644 index ab8254f07db104d72fdb206c44b161947bf22502..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/matmul_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o deleted file mode 100644 index 7d6cc71ed69c61b241e84437755fc1f139e7c8c4..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/neighbor_stat.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o deleted file mode 100644 index b5956956a114f09957f7b323749eb76815a97077..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/optimizer/parallel.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/pair_tab.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/pair_tab.cc.o deleted file mode 100644 index 1e59679b9c918c89eaea5a614141cf7ababb7dc0..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/pair_tab.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o deleted file mode 100644 index 29a38e2c97b99946d79c77e43eb25e9a355b27e7..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o deleted file mode 100644 index 6df56c3ad4984af8d3ffe942770d15b27b5fb789..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_env_mat_multi_device_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_force.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_force.cc.o deleted file mode 100644 index 93cd4471683490c64f18b49c85d18358eb42c5a9..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_force.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o deleted file mode 100644 index 37f613b9a399cd49c091a3c135be99ad9e3c6803..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_force_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_virial.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_virial.cc.o deleted file mode 100644 index 8230a797ed9c252c0324eaad4e0c34cd23c5d3f4..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_virial.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o deleted file mode 100644 index 18dfde5e70c926dfc8a094cfe156636da725787c..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/prod_virial_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o deleted file mode 100644 index c25a31db0675526ffcc5e03e7511cc96e0778f2d..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/quantize_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min.cc.o deleted file mode 100644 index 021f467a094df64bbe4df2c95a280dc0775a18ab..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min_force.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min_force.cc.o deleted file mode 100644 index 3e442278b0fccda479ac9e5e8de3938dfa35a194..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min_force.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o deleted file mode 100644 index ee25962118180be2e18d1b77b3215c728a3ff52d..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/soft_min_virial.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o deleted file mode 100644 index 2dad5e48b4fa608b692c180cabd3a38d2fcbf6b7..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tabulate_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o deleted file mode 100644 index 99bc856f1ff47b29542fe6d43b647853bb916be8..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tanh2_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o deleted file mode 100644 index 06efe2cb9a05e434eb862b9c36641a05d2128d4a..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/tanh4_nvnmd.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o deleted file mode 100644 index 2be8ecb100c7bb9aff5e11013cd81f58a08cecab..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_abi.dir/unaggregated_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/custom_op.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/custom_op.cc.o deleted file mode 100644 index bf69e410ba3ef834b14a682c5787407bdffdf7e4..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/custom_op.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o deleted file mode 100644 index 6d8c4fd4de51128dd42b978b9355f9dfafa49b12..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_force_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o deleted file mode 100644 index bb7ad40736b813206f263594adf1ed59aa30f128..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_force_grad_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o deleted file mode 100644 index 37b4607b2ea46d940e26cfc188bfd5584701b76d..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_virial_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o deleted file mode 100644 index 75bb484b679443e46ebf81f1d42db239d4417ba9..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/prod_virial_grad_multi_device.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o deleted file mode 100644 index 3c303f8e595bacecb1ec99b278092d53e4019581..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/soft_min_force_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o b/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o deleted file mode 100644 index 65633a1a463f7f3fe5d8be5ed24583706e3f7280..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/CMakeFiles/op_grads.dir/soft_min_virial_grad.cc.o and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/cmake_install.cmake b/_skbuild/linux-x86_64-3.6/cmake-build/op/cmake_install.cmake deleted file mode 100644 index 959229941cdccea4d165aac0ce0ff09edd918e08..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-build/op/cmake_install.cmake +++ /dev/null @@ -1,104 +0,0 @@ -# Install script for directory: /root/deepmd-kit/source/op - -# Set the install prefix -if(NOT DEFINED CMAKE_INSTALL_PREFIX) - set(CMAKE_INSTALL_PREFIX "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-install") -endif() -string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") - -# Set the install configuration name. -if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) - if(BUILD_TYPE) - string(REGEX REPLACE "^[^A-Za-z0-9_]+" "" - CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}") - else() - set(CMAKE_INSTALL_CONFIG_NAME "Release") - endif() - message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"") -endif() - -# Set the component getting installed. -if(NOT CMAKE_INSTALL_COMPONENT) - if(COMPONENT) - message(STATUS "Install component: \"${COMPONENT}\"") - set(CMAKE_INSTALL_COMPONENT "${COMPONENT}") - else() - set(CMAKE_INSTALL_COMPONENT) - endif() -endif() - -# Install shared libraries without execute permission? -if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE) - set(CMAKE_INSTALL_SO_NO_EXE "1") -endif() - -# Is this installation the result of a crosscompile? -if(NOT DEFINED CMAKE_CROSSCOMPILING) - set(CMAKE_CROSSCOMPILING "FALSE") -endif() - -# Set default install directory permissions. -if(NOT DEFINED CMAKE_OBJDUMP) - set(CMAKE_OBJDUMP "/usr/bin/objdump") -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so") - file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so" - RPATH "$ORIGIN") - endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/deepmd/op" TYPE MODULE FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_abi.so") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so") - file(RPATH_CHANGE - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so" - OLD_RPATH "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib:/usr/local/lib/python3.6/dist-packages/tensorflow:" - NEW_RPATH "$ORIGIN") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_abi.so") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so") - file(RPATH_CHECK - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so" - RPATH "$ORIGIN") - endif() - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/deepmd/op" TYPE MODULE FILES "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_grads.so") - if(EXISTS "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so" AND - NOT IS_SYMLINK "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so") - file(RPATH_CHANGE - FILE "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so" - OLD_RPATH "/root/deepmd-kit/_skbuild/linux-x86_64-3.6/cmake-build/lib:/usr/local/lib/python3.6/dist-packages/tensorflow:" - NEW_RPATH "$ORIGIN") - if(CMAKE_INSTALL_DO_STRIP) - execute_process(COMMAND "/usr/bin/strip" "$ENV{DESTDIR}${CMAKE_INSTALL_PREFIX}/deepmd/op/libop_grads.so") - endif() - endif() -endif() - -if(CMAKE_INSTALL_COMPONENT STREQUAL "Unspecified" OR NOT CMAKE_INSTALL_COMPONENT) - file(INSTALL DESTINATION "${CMAKE_INSTALL_PREFIX}/deepmd/op" TYPE FILE FILES - "/root/deepmd-kit/source/op/_gelu.py" - "/root/deepmd-kit/source/op/_map_nvnmd_grad.py" - "/root/deepmd-kit/source/op/_matmul_nvnmd_grad.py" - "/root/deepmd-kit/source/op/_prod_force_grad.py" - "/root/deepmd-kit/source/op/_prod_force_se_a_grad.py" - "/root/deepmd-kit/source/op/_prod_force_se_r_grad.py" - "/root/deepmd-kit/source/op/_prod_virial_grad.py" - "/root/deepmd-kit/source/op/_prod_virial_se_a_grad.py" - "/root/deepmd-kit/source/op/_prod_virial_se_r_grad.py" - "/root/deepmd-kit/source/op/_quantize_nvnmd_grad.py" - "/root/deepmd-kit/source/op/_soft_min_force_grad.py" - "/root/deepmd-kit/source/op/_soft_min_virial_grad.py" - "/root/deepmd-kit/source/op/_tabulate_grad.py" - "/root/deepmd-kit/source/op/_tanh2_nvnmd_grad.py" - "/root/deepmd-kit/source/op/_tanh4_nvnmd_grad.py" - ) -endif() - diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_abi.so b/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_abi.so deleted file mode 100755 index 3f805d26ac2b430769b3e139a8888d213f71c367..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_abi.so and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_grads.so b/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_grads.so deleted file mode 100755 index c1babad4a2eded1cc3295d187504af74a490cb44..0000000000000000000000000000000000000000 Binary files a/_skbuild/linux-x86_64-3.6/cmake-build/op/libop_grads.so and /dev/null differ diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__about__.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__about__.py deleted file mode 100644 index 840624bec554d26de81a37b9df46ecc95361c0e5..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__about__.py +++ /dev/null @@ -1 +0,0 @@ -__version__ = 'unknown' diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__init__.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__init__.py deleted file mode 100644 index c9e4149517159e206add8fb4936ee455493b1cd6..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__init__.py +++ /dev/null @@ -1,36 +0,0 @@ -"""Root of the deepmd package, exposes all public classes and submodules.""" - -try: - from importlib import metadata -except ImportError: # for Python<3.8 - import importlib_metadata as metadata -import deepmd.utils.network as network - -from . import cluster, descriptor, fit, loss, utils, nvnmd -from .env import set_mkl -from .infer import DeepEval, DeepPotential -from .infer.data_modifier import DipoleChargeModifier - -set_mkl() - -try: - from ._version import version as __version__ -except ImportError: - from .__about__ import __version__ - -# load third-party plugins -for ep in metadata.entry_points().get('deepmd', []): - ep.load() - -__all__ = [ - "descriptor", - "fit", - "loss", - "utils", - "cluster", - "network", - "DeepEval", - "DeepPotential", - "DipoleChargeModifier", - "nvnmd", -] diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__main__.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__main__.py deleted file mode 100644 index ca814493674c4fcc14d1868e28f832e0ca41c857..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/__main__.py +++ /dev/null @@ -1,6 +0,0 @@ -"""Package dp entry point.""" - -from .entrypoints.main import main - -if __name__ == '__main__': - main() diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/_version.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/_version.py deleted file mode 100644 index b095e94640c21cb94a6e0e74d6160144c855a92c..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/_version.py +++ /dev/null @@ -1,4 +0,0 @@ -# coding: utf-8 -# file generated by setuptools_scm -# don't change, don't track in version control -version = '2.1.6.dev0+ng6e3d4a62.d20230313' diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/calculator.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/calculator.py deleted file mode 100644 index 38c56b72b261ff2ac9d974aefbfa604331db8e46..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/calculator.py +++ /dev/null @@ -1,119 +0,0 @@ -"""ASE calculator interface module.""" - -from pathlib import Path -from typing import TYPE_CHECKING, Dict, List, Optional, Union - -from ase.calculators.calculator import ( - Calculator, all_changes, PropertyNotImplementedError -) - -from deepmd import DeepPotential - -if TYPE_CHECKING: - from ase import Atoms - -__all__ = ["DP"] - - -class DP(Calculator): - """Implementation of ASE deepmd calculator. - - Implemented propertie are `energy`, `forces` and `stress` - - Parameters - ---------- - model : Union[str, Path] - path to the model - label : str, optional - calculator label, by default "DP" - type_dict : Dict[str, int], optional - mapping of element types and their numbers, best left None and the calculator - will infer this information from model, by default None - - Examples - -------- - Compute potential energy - - >>> from ase import Atoms - >>> from deepmd.calculator import DP - >>> water = Atoms('H2O', - >>> positions=[(0.7601, 1.9270, 1), - >>> (1.9575, 1, 1), - >>> (1., 1., 1.)], - >>> cell=[100, 100, 100], - >>> calculator=DP(model="frozen_model.pb")) - >>> print(water.get_potential_energy()) - >>> print(water.get_forces()) - - Run BFGS structure optimization - - >>> from ase.optimize import BFGS - >>> dyn = BFGS(water) - >>> dyn.run(fmax=1e-6) - >>> print(water.get_positions()) - """ - - name = "DP" - implemented_properties = ["energy", "free_energy", "forces", "virial", "stress"] - - def __init__( - self, - model: Union[str, "Path"], - label: str = "DP", - type_dict: Dict[str, int] = None, - **kwargs - ) -> None: - Calculator.__init__(self, label=label, **kwargs) - self.dp = DeepPotential(str(Path(model).resolve())) - if type_dict: - self.type_dict = type_dict - else: - self.type_dict = dict( - zip(self.dp.get_type_map(), range(self.dp.get_ntypes())) - ) - - def calculate( - self, - atoms: Optional["Atoms"] = None, - properties: List[str] = ["energy", "forces", "virial"], - system_changes: List[str] = all_changes, - ): - """Run calculation with deepmd model. - - Parameters - ---------- - atoms : Optional[Atoms], optional - atoms object to run the calculation on, by default None - properties : List[str], optional - unused, only for function signature compatibility, - by default ["energy", "forces", "stress"] - system_changes : List[str], optional - unused, only for function signature compatibility, by default all_changes - """ - if atoms is not None: - self.atoms = atoms.copy() - - coord = self.atoms.get_positions().reshape([1, -1]) - if sum(self.atoms.get_pbc()) > 0: - cell = self.atoms.get_cell().reshape([1, -1]) - else: - cell = None - symbols = self.atoms.get_chemical_symbols() - atype = [self.type_dict[k] for k in symbols] - e, f, v = self.dp.eval(coords=coord, cells=cell, atom_types=atype) - self.results['energy'] = e[0][0] - # see https://gitlab.com/ase/ase/-/merge_requests/2485 - self.results['free_energy'] = e[0][0] - self.results['forces'] = f[0] - self.results['virial'] = v[0].reshape(3, 3) - - # convert virial into stress for lattice relaxation - if "stress" in properties: - if sum(atoms.get_pbc()) > 0: - # the usual convention (tensile stress is positive) - # stress = -virial / volume - stress = -0.5 * (v[0].copy() + v[0].copy().T) / atoms.get_volume() - # Voigt notation - self.results['stress'] = stress.flat[[0, 4, 8, 5, 2, 1]] - else: - raise PropertyNotImplementedError diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/__init__.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/__init__.py deleted file mode 100644 index 7007208d4b7dec61dd4ec7651c5f9d5e362d8a2e..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/__init__.py +++ /dev/null @@ -1,22 +0,0 @@ -"""Module that reads node resources, auto detects if running local or on SLURM.""" - -from .local import get_resource as get_local_res -from .slurm import get_resource as get_slurm_res -import os -from typing import List, Tuple, Optional - -__all__ = ["get_resource"] - - -def get_resource() -> Tuple[str, List[str], Optional[List[int]]]: - """Get local or slurm resources: nodename, nodelist, and gpus. - - Returns - ------- - Tuple[str, List[str], Optional[List[int]]] - nodename, nodelist, and gpus - """ - if "SLURM_JOB_NODELIST" in os.environ: - return get_slurm_res() - else: - return get_local_res() diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/local.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/local.py deleted file mode 100644 index 9b7f622975881aa0b514dc4d708581cd42e92fc5..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/local.py +++ /dev/null @@ -1,49 +0,0 @@ -"""Get local GPU resources.""" - -import os -import socket -import subprocess as sp -import sys - -from deepmd.env import tf -from typing import List, Tuple, Optional - - -__all__ = ["get_gpus", "get_resource"] - - -def get_gpus(): - """Get available IDs of GPU cards at local. - These IDs are valid when used as the TensorFlow device ID. - - Returns - ------- - Optional[List[int]] - List of available GPU IDs. Otherwise, None. - """ - test_cmd = 'from tensorflow.python.client import device_lib; ' \ - 'devices = device_lib.list_local_devices(); ' \ - 'gpus = [d.name for d in devices if d.device_type == "GPU"]; ' \ - 'print(len(gpus))' - with sp.Popen([sys.executable, "-c", test_cmd], stderr=sp.PIPE, stdout=sp.PIPE) as p: - stdout, stderr = p.communicate() - if p.returncode != 0: - decoded = stderr.decode('UTF-8') - raise RuntimeError('Failed to detect availbe GPUs due to:\n%s' % decoded) - decoded = stdout.decode('UTF-8').strip() - num_gpus = int(decoded) - return list(range(num_gpus)) if num_gpus > 0 else None - - -def get_resource() -> Tuple[str, List[str], Optional[List[int]]]: - """Get local resources: nodename, nodelist, and gpus. - - Returns - ------- - Tuple[str, List[str], Optional[List[int]]] - nodename, nodelist, and gpus - """ - nodename = socket.gethostname() - nodelist = [nodename] - gpus = get_gpus() - return nodename, nodelist, gpus diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/slurm.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/slurm.py deleted file mode 100644 index 6334f4a8f6ef2936bed8b705bd5cc0282948c419..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/cluster/slurm.py +++ /dev/null @@ -1,51 +0,0 @@ -"""MOdule to get resources on SLURM cluster. - -References ----------- -https://github.com/deepsense-ai/tensorflow_on_slurm #### -""" - -import hostlist -import os - -from deepmd.cluster import local -from typing import List, Tuple, Optional - -__all__ = ["get_resource"] - - -def get_resource() -> Tuple[str, List[str], Optional[List[int]]]: - """Get SLURM resources: nodename, nodelist, and gpus. - - Returns - ------- - Tuple[str, List[str], Optional[List[int]]] - nodename, nodelist, and gpus - - Raises - ------ - RuntimeError - if number of nodes could not be retrieved - ValueError - list of nodes is not of the same length sa number of nodes - ValueError - if current nodename is not found in node list - """ - nodelist = hostlist.expand_hostlist(os.environ["SLURM_JOB_NODELIST"]) - nodename = os.environ["SLURMD_NODENAME"] - num_nodes_env = os.getenv("SLURM_JOB_NUM_NODES") - if num_nodes_env: - num_nodes = int(num_nodes_env) - else: - raise RuntimeError("Could not get SLURM number of nodes") - - if len(nodelist) != num_nodes: - raise ValueError( - f"Number of slurm nodes {len(nodelist)} not equal to {num_nodes}" - ) - if nodename not in nodelist: - raise ValueError( - f"Nodename({nodename}) not in nodelist({nodelist}). This should not happen!" - ) - gpus = local.get_gpus() - return nodename, nodelist, gpus diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/common.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/common.py deleted file mode 100644 index b868038b3d346ea716e336741e7ade531848ac6a..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/common.py +++ /dev/null @@ -1,579 +0,0 @@ -"""Collection of functions and classes used throughout the whole package.""" - -import json -import warnings -import tensorflow -from functools import wraps -from pathlib import Path -from typing import ( - TYPE_CHECKING, - Any, - Callable, - Dict, - List, - Optional, - Tuple, - TypeVar, - Union, -) - -import numpy as np -import yaml - -from deepmd.env import op_module, tf -from tensorflow.python.framework import tensor_util -from deepmd.env import GLOBAL_TF_FLOAT_PRECISION, GLOBAL_NP_FLOAT_PRECISION -from deepmd.utils.sess import run_sess -from deepmd.utils.errors import GraphWithoutTensorError -from deepmd.utils.path import DPPath - -if TYPE_CHECKING: - _DICT_VAL = TypeVar("_DICT_VAL") - _OBJ = TypeVar("_OBJ") - try: - from typing import Literal # python >3.6 - except ImportError: - from typing_extensions import Literal # type: ignore - _ACTIVATION = Literal["relu", "relu6", "softplus", "sigmoid", "tanh", "gelu", "gelu_tf"] - _PRECISION = Literal["default", "float16", "float32", "float64"] - -# define constants -PRECISION_DICT = { - "default": GLOBAL_TF_FLOAT_PRECISION, - "float16": tf.float16, - "float32": tf.float32, - "float64": tf.float64, -} - - -def gelu(x: tf.Tensor) -> tf.Tensor: - """Gaussian Error Linear Unit. - - This is a smoother version of the RELU, implemented by custom operator. - - Parameters - ---------- - x : tf.Tensor - float Tensor to perform activation - - Returns - ------- - tf.Tensor - `x` with the GELU activation applied - - References - ---------- - Original paper - https://arxiv.org/abs/1606.08415 - """ - return op_module.gelu_custom(x) - - -def gelu_tf(x: tf.Tensor) -> tf.Tensor: - """Gaussian Error Linear Unit. - - This is a smoother version of the RELU, implemented by TF. - - Parameters - ---------- - x : tf.Tensor - float Tensor to perform activation - - Returns - ------- - tf.Tensor - `x` with the GELU activation applied - - References - ---------- - Original paper - https://arxiv.org/abs/1606.08415 - """ - def gelu_wrapper(x): - try: - return tensorflow.nn.gelu(x, approximate=True) - except AttributeError: - warnings.warn("TensorFlow does not provide an implementation of gelu, please upgrade your TensorFlow version. Fallback to the custom gelu operator.") - return op_module.gelu_custom(x) - return (lambda x: gelu_wrapper(x))(x) - -# TODO this is not a good way to do things. This is some global variable to which -# TODO anyone can write and there is no good way to keep track of the changes -data_requirement = {} - -ACTIVATION_FN_DICT = { - "relu": tf.nn.relu, - "relu6": tf.nn.relu6, - "softplus": tf.nn.softplus, - "sigmoid": tf.sigmoid, - "tanh": tf.nn.tanh, - "gelu": gelu, - "gelu_tf": gelu_tf, -} - - -def add_data_requirement( - key: str, - ndof: int, - atomic: bool = False, - must: bool = False, - high_prec: bool = False, - type_sel: bool = None, - repeat: int = 1, - default: float = 0., -): - """Specify data requirements for training. - - Parameters - ---------- - key : str - type of data stored in corresponding `*.npy` file e.g. `forces` or `energy` - ndof : int - number of the degrees of freedom, this is tied to `atomic` parameter e.g. forces - have `atomic=True` and `ndof=3` - atomic : bool, optional - specifies whwther the `ndof` keyworrd applies to per atom quantity or not, - by default False - must : bool, optional - specifi if the `*.npy` data file must exist, by default False - high_prec : bool, optional - if tru load data to `np.float64` else `np.float32`, by default False - type_sel : bool, optional - select only certain type of atoms, by default None - repeat : int, optional - if specify repaeat data `repeat` times, by default 1 - default : float, optional, default=0. - default value of data - """ - data_requirement[key] = { - "ndof": ndof, - "atomic": atomic, - "must": must, - "high_prec": high_prec, - "type_sel": type_sel, - "repeat": repeat, - "default": default, - } - - -def select_idx_map( - atom_types: np.ndarray, select_types: np.ndarray -) -> np.ndarray: - """Build map of indices for element supplied element types from all atoms list. - - Parameters - ---------- - atom_types : np.ndarray - array specifing type for each atoms as integer - select_types : np.ndarray - types of atoms you want to find indices for - - Returns - ------- - np.ndarray - indices of types of atoms defined by `select_types` in `atom_types` array - - Warnings - -------- - `select_types` array will be sorted before finding indices in `atom_types` - """ - sort_select_types = np.sort(select_types) - idx_map = np.array([], dtype=int) - for ii in sort_select_types: - idx_map = np.append(idx_map, np.where(atom_types == ii)) - return idx_map - - -# TODO not really sure if the docstring is right the purpose of this is a bit unclear -def make_default_mesh( - test_box: np.ndarray, cell_size: float = 3.0 -) -> np.ndarray: - """Get number of cells of size=`cell_size` fit into average box. - - Parameters - ---------- - test_box : np.ndarray - numpy array with cells of shape Nx9 - cell_size : float, optional - length of one cell, by default 3.0 - - Returns - ------- - np.ndarray - mesh for supplied boxes, how many cells fit in each direction - """ - cell_lengths = np.linalg.norm(test_box.reshape([-1, 3, 3]), axis=2) - avg_cell_lengths = np.average(cell_lengths, axis=0) - ncell = (avg_cell_lengths / cell_size).astype(np.int32) - ncell[ncell < 2] = 2 - default_mesh = np.zeros(6, dtype=np.int32) - default_mesh[3:6] = ncell - return default_mesh - - -# TODO not an ideal approach, every class uses this to parse arguments on its own, json -# TODO should be parsed once and the parsed result passed to all objects that need it -class ClassArg: - """Class that take care of input json/yaml parsing. - - The rules for parsing are defined by the `add` method, than `parse` is called to - process the supplied dict - - Attributes - ---------- - arg_dict: Dict[str, Any] - dictionary containing parsing rules - alias_map: Dict[str, Any] - dictionary with keyword aliases - """ - - def __init__(self) -> None: - self.arg_dict = {} - self.alias_map = {} - - def add( - self, - key: str, - types_: Union[type, List[type]], - alias: Optional[Union[str, List[str]]] = None, - default: Any = None, - must: bool = False, - ) -> "ClassArg": - """Add key to be parsed. - - Parameters - ---------- - key : str - key name - types_ : Union[type, List[type]] - list of allowed key types - alias : Optional[Union[str, List[str]]], optional - alias for the key, by default None - default : Any, optional - default value for the key, by default None - must : bool, optional - if the key is mandatory, by default False - - Returns - ------- - ClassArg - instance with added key - """ - if not isinstance(types_, list): - types = [types_] - else: - types = types_ - if alias is not None: - if not isinstance(alias, list): - alias_ = [alias] - else: - alias_ = alias - else: - alias_ = [] - - self.arg_dict[key] = { - "types": types, - "alias": alias_, - "value": default, - "must": must, - } - for ii in alias_: - self.alias_map[ii] = key - - return self - - def _add_single(self, key: str, data: Any): - vtype = type(data) - if data is None: - return data - if not (vtype in self.arg_dict[key]["types"]): - for tp in self.arg_dict[key]["types"]: - try: - vv = tp(data) - except TypeError: - pass - else: - break - else: - raise TypeError( - f"cannot convert provided key {key} to type(s) " - f'{self.arg_dict[key]["types"]} ' - ) - else: - vv = data - self.arg_dict[key]["value"] = vv - - def _check_must(self): - for kk in self.arg_dict: - if self.arg_dict[kk]["must"] and self.arg_dict[kk]["value"] is None: - raise RuntimeError(f"key {kk} must be provided") - - def parse(self, jdata: Dict[str, Any]) -> Dict[str, Any]: - """Parse input dictionary, use the rules defined by add method. - - Parameters - ---------- - jdata : Dict[str, Any] - loaded json/yaml data - - Returns - ------- - Dict[str, Any] - parsed dictionary - """ - for kk in jdata.keys(): - if kk in self.arg_dict: - key = kk - self._add_single(key, jdata[kk]) - else: - if kk in self.alias_map: - key = self.alias_map[kk] - self._add_single(key, jdata[kk]) - self._check_must() - return self.get_dict() - - def get_dict(self) -> Dict[str, Any]: - """Get dictionary built from rules defined by add method. - - Returns - ------- - Dict[str, Any] - settings dictionary with default values - """ - ret = {} - for kk in self.arg_dict.keys(): - ret[kk] = self.arg_dict[kk]["value"] - return ret - - -# TODO maybe rename this to j_deprecated and only warn about deprecated keys, -# TODO if the deprecated_key argument is left empty function puppose is only custom -# TODO error since dict[key] already raises KeyError when the key is missing -def j_must_have( - jdata: Dict[str, "_DICT_VAL"], key: str, deprecated_key: List[str] = [] -) -> "_DICT_VAL": - """Assert that supplied dictionary conaines specified key. - - Returns - ------- - _DICT_VAL - value that was store unde supplied key - - Raises - ------ - RuntimeError - if the key is not present - """ - if key not in jdata.keys(): - for ii in deprecated_key: - if ii in jdata.keys(): - warnings.warn(f"the key {ii} is deprecated, please use {key} instead") - return jdata[ii] - else: - raise RuntimeError(f"json database must provide key {key}") - else: - return jdata[key] - - -def j_loader(filename: Union[str, Path]) -> Dict[str, Any]: - """Load yaml or json settings file. - - Parameters - ---------- - filename : Union[str, Path] - path to file - - Returns - ------- - Dict[str, Any] - loaded dictionary - - Raises - ------ - TypeError - if the supplied file is of unsupported type - """ - filepath = Path(filename) - if filepath.suffix.endswith("json"): - with filepath.open() as fp: - return json.load(fp) - elif filepath.suffix.endswith(("yml", "yaml")): - with filepath.open() as fp: - return yaml.safe_load(fp) - else: - raise TypeError("config file must be json, or yaml/yml") - - -def get_activation_func( - activation_fn: Union["_ACTIVATION", None], -) -> Union[Callable[[tf.Tensor], tf.Tensor], None]: - """Get activation function callable based on string name. - - Parameters - ---------- - activation_fn : _ACTIVATION - one of the defined activation functions - - Returns - ------- - Callable[[tf.Tensor], tf.Tensor] - correspondingg TF callable - - Raises - ------ - RuntimeError - if unknown activation function is specified - """ - if activation_fn is None or activation_fn in ['none', 'None']: - return None - if activation_fn not in ACTIVATION_FN_DICT: - raise RuntimeError(f"{activation_fn} is not a valid activation function") - return ACTIVATION_FN_DICT[activation_fn] - - -def get_precision(precision: "_PRECISION") -> Any: - """Convert str to TF DType constant. - - Parameters - ---------- - precision : _PRECISION - one of the allowed precisions - - Returns - ------- - tf.python.framework.dtypes.DType - appropriate TF constant - - Raises - ------ - RuntimeError - if supplied precision string does not have acorresponding TF constant - """ - if precision not in PRECISION_DICT: - raise RuntimeError(f"{precision} is not a valid precision") - return PRECISION_DICT[precision] - - -# TODO port completely to pathlib when all callers are ported -def expand_sys_str(root_dir: Union[str, Path]) -> List[str]: - """Recursively iterate over directories taking those that contain `type.raw` file. - - Parameters - ---------- - root_dir : Union[str, Path] - starting directory - - Returns - ------- - List[str] - list of string pointing to system directories - """ - root_dir = DPPath(root_dir) - matches = [str(d) for d in root_dir.rglob("*") if (d / "type.raw").is_file()] - if (root_dir / "type.raw").is_file(): - matches.append(str(root_dir)) - return matches - - -def get_np_precision(precision: "_PRECISION") -> np.dtype: - """Get numpy precision constant from string. - - Parameters - ---------- - precision : _PRECISION - string name of numpy constant or default - - Returns - ------- - np.dtype - numpy presicion constant - - Raises - ------ - RuntimeError - if string is invalid - """ - if precision == "default": - return GLOBAL_NP_FLOAT_PRECISION - elif precision == "float16": - return np.float16 - elif precision == "float32": - return np.float32 - elif precision == "float64": - return np.float64 - else: - raise RuntimeError(f"{precision} is not a valid precision") - - -def safe_cast_tensor(input: tf.Tensor, - from_precision: tf.DType, - to_precision: tf.DType) -> tf.Tensor: - """Convert a Tensor from a precision to another precision. - - If input is not a Tensor or without the specific precision, the method will not - cast it. - - Parameters - ---------- - input: tf.Tensor - input tensor - precision : tf.DType - Tensor data type that casts to - - Returns - ------- - tf.Tensor - casted Tensor - """ - if tensor_util.is_tensor(input) and input.dtype == from_precision: - return tf.cast(input, to_precision) - return input - - -def cast_precision(func: Callable) -> Callable: - """A decorator that casts and casts back the input - and output tensor of a method. - - The decorator should be used in a classmethod. - - The decorator will do the following thing: - (1) It casts input Tensors from `GLOBAL_TF_FLOAT_PRECISION` - to precision defined by property `precision`. - (2) It casts output Tensors from `precision` to - `GLOBAL_TF_FLOAT_PRECISION`. - (3) It checks inputs and outputs and only casts when - input or output is a Tensor and its dtype matches - `GLOBAL_TF_FLOAT_PRECISION` and `precision`, respectively. - If it does not match (e.g. it is an integer), the decorator - will do nothing on it. - - Returns - ------- - Callable - a decorator that casts and casts back the input and - output tensor of a method - - Examples - -------- - >>> class A: - ... @property - ... def precision(self): - ... return tf.float32 - ... - ... @cast_precision - ... def f(x: tf.Tensor, y: tf.Tensor) -> tf.Tensor: - ... return x ** 2 + y - """ - @wraps(func) - def wrapper(self, *args, **kwargs): - # only convert tensors - returned_tensor = func( - self, - *[safe_cast_tensor(vv, GLOBAL_TF_FLOAT_PRECISION, self.precision) for vv in args], - **{kk: safe_cast_tensor(vv, GLOBAL_TF_FLOAT_PRECISION, self.precision) for kk, vv in kwargs.items()}, - ) - if isinstance(returned_tensor, tuple): - return tuple((safe_cast_tensor(vv, self.precision, GLOBAL_TF_FLOAT_PRECISION) for vv in returned_tensor)) - else: - return safe_cast_tensor(returned_tensor, self.precision, GLOBAL_TF_FLOAT_PRECISION) - return wrapper diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/__init__.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/__init__.py deleted file mode 100644 index c5025a74831deee1573a0e6a794b5ba2cfb1e69e..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -from .descriptor import Descriptor -from .hybrid import DescrptHybrid -from .se_a import DescrptSeA -from .se_r import DescrptSeR -from .se_t import DescrptSeT -from .se_a_ebd import DescrptSeAEbd -from .se_a_ef import DescrptSeAEf -from .se_a_ef import DescrptSeAEfLower -from .loc_frame import DescrptLocFrame -from .se_atten import DescrptSeAtten diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/descriptor.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/descriptor.py deleted file mode 100644 index 0c40013f884d15915a90501865e4537b7053a210..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/descriptor.py +++ /dev/null @@ -1,408 +0,0 @@ -from abc import ABC, abstractmethod -from typing import Any, Dict, List, Tuple - -import numpy as np -from deepmd.env import tf -from deepmd.utils import Plugin, PluginVariant - - -class Descriptor(PluginVariant): - r"""The abstract class for descriptors. All specific descriptors should - be based on this class. - - The descriptor :math:`\mathcal{D}` describes the environment of an atom, - which should be a function of coordinates and types of its neighbour atoms. - - Examples - -------- - >>> descript = Descriptor(type="se_e2_a", rcut=6., rcut_smth=0.5, sel=[50]) - >>> type(descript) - - - Notes - ----- - Only methods and attributes defined in this class are generally public, - that can be called by other classes. - """ - - __plugins = Plugin() - - @staticmethod - def register(key: str) -> "Descriptor": - """Regiester a descriptor plugin. - - Parameters - ---------- - key : str - the key of a descriptor - - Returns - ------- - Descriptor - the regiestered descriptor - - Examples - -------- - >>> @Descriptor.register("some_descrpt") - class SomeDescript(Descriptor): - pass - """ - return Descriptor.__plugins.register(key) - - def __new__(cls, *args, **kwargs): - if cls is Descriptor: - try: - descrpt_type = kwargs['type'] - except KeyError: - raise KeyError('the type of descriptor should be set by `type`') - if descrpt_type in Descriptor.__plugins.plugins: - cls = Descriptor.__plugins.plugins[descrpt_type] - else: - raise RuntimeError('Unknown descriptor type: ' + descrpt_type) - return super().__new__(cls) - - @abstractmethod - def get_rcut(self) -> float: - """ - Returns the cut-off radius. - - Returns - ------- - float - the cut-off radius - - Notes - ----- - This method must be implemented, as it's called by other classes. - """ - - @abstractmethod - def get_ntypes(self) -> int: - """ - Returns the number of atom types. - - Returns - ------- - int - the number of atom types - - Notes - ----- - This method must be implemented, as it's called by other classes. - """ - - @abstractmethod - def get_dim_out(self) -> int: - """ - Returns the output dimension of this descriptor. - - Returns - ------- - int - the output dimension of this descriptor - - Notes - ----- - This method must be implemented, as it's called by other classes. - """ - - def get_dim_rot_mat_1(self) -> int: - """ - Returns the first dimension of the rotation matrix. The rotation is of shape - dim_1 x 3 - - Returns - ------- - int - the first dimension of the rotation matrix - """ - # TODO: I think this method should be implemented as it's called by dipole and - # polar fitting network. However, currently not all descriptors have this - # method. - raise NotImplementedError - - def get_nlist(self) -> Tuple[tf.Tensor, tf.Tensor, List[int], List[int]]: - """ - Returns neighbor information. - - Returns - ------- - nlist : tf.Tensor - Neighbor list - rij : tf.Tensor - The relative distance between the neighbor and the center atom. - sel_a : list[int] - The number of neighbors with full information - sel_r : list[int] - The number of neighbors with only radial information - """ - # TODO: I think this method should be implemented as it's called by energy - # model. However, se_ar and hybrid doesn't have this method. - raise NotImplementedError - - @abstractmethod - def compute_input_stats(self, - data_coord: List[np.ndarray], - data_box: List[np.ndarray], - data_atype: List[np.ndarray], - natoms_vec: List[np.ndarray], - mesh: List[np.ndarray], - input_dict: Dict[str, List[np.ndarray]] - ) -> None: - """ - Compute the statisitcs (avg and std) of the training data. The input will be - normalized by the statistics. - - Parameters - ---------- - data_coord : list[np.ndarray] - The coordinates. Can be generated by - :meth:`deepmd.model.model_stat.make_stat_input` - data_box : list[np.ndarray] - The box. Can be generated by - :meth:`deepmd.model.model_stat.make_stat_input` - data_atype : list[np.ndarray] - The atom types. Can be generated by :meth:`deepmd.model.model_stat.make_stat_input` - natoms_vec : list[np.ndarray] - The vector for the number of atoms of the system and different types of - atoms. Can be generated by :meth:`deepmd.model.model_stat.make_stat_input` - mesh : list[np.ndarray] - The mesh for neighbor searching. Can be generated by - :meth:`deepmd.model.model_stat.make_stat_input` - input_dict : dict[str, list[np.ndarray]] - Dictionary for additional input - - Notes - ----- - This method must be implemented, as it's called by other classes. - """ - - @abstractmethod - def build(self, - coord_: tf.Tensor, - atype_: tf.Tensor, - natoms: tf.Tensor, - box_: tf.Tensor, - mesh: tf.Tensor, - input_dict: Dict[str, Any], - reuse: bool = None, - suffix: str = '', - ) -> tf.Tensor: - """ - Build the computational graph for the descriptor. - - Parameters - ---------- - coord_ : tf.Tensor - The coordinate of atoms - atype_ : tf.Tensor - The type of atoms - natoms : tf.Tensor - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - box : tf.Tensor - The box of frames - mesh : tf.Tensor - For historical reasons, only the length of the Tensor matters. - if size of mesh == 6, pbc is assumed. - if size of mesh == 0, no-pbc is assumed. - input_dict : dict[str, Any] - Dictionary for additional inputs - reuse : bool, optional - The weights in the networks should be reused when get the variable. - suffix : str, optional - Name suffix to identify this descriptor - - Returns - ------- - descriptor: tf.Tensor - The output descriptor - - Notes - ----- - This method must be implemented, as it's called by other classes. - """ - - def enable_compression(self, - min_nbor_dist: float, - model_file: str = 'frozon_model.pb', - table_extrapolate: float = 5., - table_stride_1: float = 0.01, - table_stride_2: float = 0.1, - check_frequency: int = -1, - suffix: str = "", - ) -> None: - """ - Reveive the statisitcs (distance, max_nbor_size and env_mat_range) of the - training data. - - Parameters - ---------- - min_nbor_dist : float - The nearest distance between atoms - model_file : str, default: 'frozon_model.pb' - The original frozen model, which will be compressed by the program - table_extrapolate : float, default: 5. - The scale of model extrapolation - table_stride_1 : float, default: 0.01 - The uniform stride of the first table - table_stride_2 : float, default: 0.1 - The uniform stride of the second table - check_frequency : int, default: -1 - The overflow check frequency - suffix : str, optional - The suffix of the scope - - Notes - ----- - This method is called by others when the descriptor supported compression. - """ - raise NotImplementedError( - "Descriptor %s doesn't support compression!" % type(self).__name__) - - def enable_mixed_precision(self, mixed_prec: dict = None) -> None: - """ - Reveive the mixed precision setting. - - Parameters - ---------- - mixed_prec - The mixed precision setting used in the embedding net - - Notes - ----- - This method is called by others when the descriptor supported compression. - """ - raise NotImplementedError( - "Descriptor %s doesn't support mixed precision training!" - % type(self).__name__ - ) - - @abstractmethod - def prod_force_virial(self, - atom_ener: tf.Tensor, - natoms: tf.Tensor - ) -> Tuple[tf.Tensor, tf.Tensor, tf.Tensor]: - """ - Compute force and virial. - - Parameters - ---------- - atom_ener : tf.Tensor - The atomic energy - natoms : tf.Tensor - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - - Returns - ------- - force : tf.Tensor - The force on atoms - virial : tf.Tensor - The total virial - atom_virial : tf.Tensor - The atomic virial - """ - - def get_feed_dict(self, - coord_: tf.Tensor, - atype_: tf.Tensor, - natoms: tf.Tensor, - box: tf.Tensor, - mesh: tf.Tensor - ) -> Dict[str, tf.Tensor]: - """ - Generate the feed_dict for current descriptor - - Parameters - ---------- - coord_ : tf.Tensor - The coordinate of atoms - atype_ : tf.Tensor - The type of atoms - natoms : tf.Tensor - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - box : tf.Tensor - The box. Can be generated by deepmd.model.make_stat_input - mesh : tf.Tensor - For historical reasons, only the length of the Tensor matters. - if size of mesh == 6, pbc is assumed. - if size of mesh == 0, no-pbc is assumed. - - Returns - ------- - feed_dict : dict[str, tf.Tensor] - The output feed_dict of current descriptor - """ - feed_dict = { - 't_coord:0' :coord_, - 't_type:0' :atype_, - 't_natoms:0' :natoms, - 't_box:0' :box, - 't_mesh:0' :mesh - } - return feed_dict - - def init_variables(self, - graph: tf.Graph, - graph_def: tf.GraphDef, - suffix : str = "", - ) -> None: - """ - Init the embedding net variables with the given dict - - Parameters - ---------- - graph : tf.Graph - The input frozen model graph - graph_def : tf.GraphDef - The input frozen model graph_def - suffix : str, optional - The suffix of the scope - - Notes - ----- - This method is called by others when the descriptor supported initialization from the given variables. - """ - raise NotImplementedError( - "Descriptor %s doesn't support initialization from the given variables!" % type(self).__name__) - - def get_tensor_names(self, suffix : str = "") -> Tuple[str]: - """Get names of tensors. - - Parameters - ---------- - suffix : str - The suffix of the scope - - Returns - ------- - Tuple[str] - Names of tensors - """ - raise NotImplementedError("Descriptor %s doesn't support this property!" % type(self).__name__) - - def pass_tensors_from_frz_model(self, - *tensors : tf.Tensor, - ) -> None: - """ - Pass the descrpt_reshape tensor as well as descrpt_deriv tensor from the frz graph_def - - Parameters - ---------- - *tensors : tf.Tensor - passed tensors - - Notes - ----- - The number of parameters in the method must be equal to the numbers of returns in - :meth:`get_tensor_names`. - """ - raise NotImplementedError("Descriptor %s doesn't support this method!" % type(self).__name__) diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/hybrid.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/hybrid.py deleted file mode 100644 index e577b2ef17040a891a8e44cfe0cce5f0b9d9ca82..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/hybrid.py +++ /dev/null @@ -1,334 +0,0 @@ -import numpy as np -from typing import Tuple, List - -from deepmd.env import tf -from deepmd.common import ClassArg -from deepmd.env import op_module -from deepmd.env import GLOBAL_TF_FLOAT_PRECISION -from deepmd.env import GLOBAL_NP_FLOAT_PRECISION -# from deepmd.descriptor import DescrptLocFrame -# from deepmd.descriptor import DescrptSeA -# from deepmd.descriptor import DescrptSeT -# from deepmd.descriptor import DescrptSeAEbd -# from deepmd.descriptor import DescrptSeAEf -# from deepmd.descriptor import DescrptSeR -from .descriptor import Descriptor -from .se_a import DescrptSeA -from .se_r import DescrptSeR -from .se_t import DescrptSeT -from .se_a_ebd import DescrptSeAEbd -from .se_a_ef import DescrptSeAEf -from .loc_frame import DescrptLocFrame - -@Descriptor.register("hybrid") -class DescrptHybrid (Descriptor): - """Concate a list of descriptors to form a new descriptor. - - Parameters - ---------- - list : list - Build a descriptor from the concatenation of the list of descriptors. - """ - def __init__ (self, - list : list - ) -> None : - """ - Constructor - """ - # warning: list is conflict with built-in list - descrpt_list = list - if descrpt_list == [] or descrpt_list is None: - raise RuntimeError('cannot build descriptor from an empty list of descriptors.') - formatted_descript_list = [] - for ii in descrpt_list: - if isinstance(ii, Descriptor): - formatted_descript_list.append(ii) - elif isinstance(ii, dict): - formatted_descript_list.append(Descriptor(**ii)) - else: - raise NotImplementedError - # args = ClassArg()\ - # .add('list', list, must = True) - # class_data = args.parse(jdata) - # dict_list = class_data['list'] - self.descrpt_list = formatted_descript_list - self.numb_descrpt = len(self.descrpt_list) - for ii in range(1, self.numb_descrpt): - assert(self.descrpt_list[ii].get_ntypes() == - self.descrpt_list[ 0].get_ntypes()), \ - f'number of atom types in {ii}th descrptor does not match others' - - - def get_rcut (self) -> float: - """ - Returns the cut-off radius - """ - all_rcut = [ii.get_rcut() for ii in self.descrpt_list] - return np.max(all_rcut) - - - def get_ntypes (self) -> int: - """ - Returns the number of atom types - """ - return self.descrpt_list[0].get_ntypes() - - - def get_dim_out (self) -> int: - """ - Returns the output dimension of this descriptor - """ - all_dim_out = [ii.get_dim_out() for ii in self.descrpt_list] - return sum(all_dim_out) - - - def get_nlist_i(self, - ii : int - ) -> Tuple[tf.Tensor, tf.Tensor, List[int], List[int]]: - """Get the neighbor information of the ii-th descriptor - - Parameters - ---------- - ii : int - The index of the descriptor - - Returns - ------- - nlist - Neighbor list - rij - The relative distance between the neighbor and the center atom. - sel_a - The number of neighbors with full information - sel_r - The number of neighbors with only radial information - """ - return self.descrpt_list[ii].nlist, self.descrpt_list[ii].rij, self.descrpt_list[ii].sel_a, self.descrpt_list[ii].sel_r - - - def compute_input_stats (self, - data_coord : list, - data_box : list, - data_atype : list, - natoms_vec : list, - mesh : list, - input_dict : dict - ) -> None : - """ - Compute the statisitcs (avg and std) of the training data. The input will be normalized by the statistics. - - Parameters - ---------- - data_coord - The coordinates. Can be generated by deepmd.model.make_stat_input - data_box - The box. Can be generated by deepmd.model.make_stat_input - data_atype - The atom types. Can be generated by deepmd.model.make_stat_input - natoms_vec - The vector for the number of atoms of the system and different types of atoms. Can be generated by deepmd.model.make_stat_input - mesh - The mesh for neighbor searching. Can be generated by deepmd.model.make_stat_input - input_dict - Dictionary for additional input - """ - for ii in self.descrpt_list: - ii.compute_input_stats(data_coord, data_box, data_atype, natoms_vec, mesh, input_dict) - - - def build (self, - coord_ : tf.Tensor, - atype_ : tf.Tensor, - natoms : tf.Tensor, - box_ : tf.Tensor, - mesh : tf.Tensor, - input_dict : dict, - reuse : bool = None, - suffix : str = '' - ) -> tf.Tensor: - """ - Build the computational graph for the descriptor - - Parameters - ---------- - coord_ - The coordinate of atoms - atype_ - The type of atoms - natoms - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - mesh - For historical reasons, only the length of the Tensor matters. - if size of mesh == 6, pbc is assumed. - if size of mesh == 0, no-pbc is assumed. - input_dict - Dictionary for additional inputs - reuse - The weights in the networks should be reused when get the variable. - suffix - Name suffix to identify this descriptor - - Returns - ------- - descriptor - The output descriptor - """ - with tf.variable_scope('descrpt_attr' + suffix, reuse = reuse) : - t_rcut = tf.constant(self.get_rcut(), - name = 'rcut', - dtype = GLOBAL_TF_FLOAT_PRECISION) - t_ntypes = tf.constant(self.get_ntypes(), - name = 'ntypes', - dtype = tf.int32) - all_dout = [] - for idx,ii in enumerate(self.descrpt_list): - dout = ii.build(coord_, atype_, natoms, box_, mesh, input_dict, suffix=suffix+f'_{idx}', reuse=reuse) - dout = tf.reshape(dout, [-1, ii.get_dim_out()]) - all_dout.append(dout) - dout = tf.concat(all_dout, axis = 1) - dout = tf.reshape(dout, [-1, natoms[0], self.get_dim_out()]) - return dout - - - def prod_force_virial(self, - atom_ener : tf.Tensor, - natoms : tf.Tensor - ) -> Tuple[tf.Tensor, tf.Tensor, tf.Tensor]: - """ - Compute force and virial - - Parameters - ---------- - atom_ener - The atomic energy - natoms - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - - Returns - ------- - force - The force on atoms - virial - The total virial - atom_virial - The atomic virial - """ - for idx,ii in enumerate(self.descrpt_list): - ff, vv, av = ii.prod_force_virial(atom_ener, natoms) - if idx == 0: - force = ff - virial = vv - atom_virial = av - else: - force += ff - virial += vv - atom_virial += av - return force, virial, atom_virial - - def enable_compression(self, - min_nbor_dist: float, - model_file: str = 'frozon_model.pb', - table_extrapolate: float = 5., - table_stride_1: float = 0.01, - table_stride_2: float = 0.1, - check_frequency: int = -1, - suffix: str = "" - ) -> None: - """ - Reveive the statisitcs (distance, max_nbor_size and env_mat_range) of the - training data. - - Parameters - ---------- - min_nbor_dist : float - The nearest distance between atoms - model_file : str, default: 'frozon_model.pb' - The original frozen model, which will be compressed by the program - table_extrapolate : float, default: 5. - The scale of model extrapolation - table_stride_1 : float, default: 0.01 - The uniform stride of the first table - table_stride_2 : float, default: 0.1 - The uniform stride of the second table - check_frequency : int, default: -1 - The overflow check frequency - suffix : str, optional - The suffix of the scope - """ - for idx, ii in enumerate(self.descrpt_list): - ii.enable_compression(min_nbor_dist, model_file, table_extrapolate, table_stride_1, table_stride_2, check_frequency, suffix=f"{suffix}_{idx}") - - - def enable_mixed_precision(self, mixed_prec : dict = None) -> None: - """ - Reveive the mixed precision setting. - - Parameters - ---------- - mixed_prec - The mixed precision setting used in the embedding net - """ - for idx, ii in enumerate(self.descrpt_list): - ii.enable_mixed_precision(mixed_prec) - - - def init_variables(self, - graph: tf.Graph, - graph_def: tf.GraphDef, - suffix : str = "", - ) -> None: - """ - Init the embedding net variables with the given dict - - Parameters - ---------- - graph : tf.Graph - The input frozen model graph - graph_def : tf.GraphDef - The input frozen model graph_def - suffix : str, optional - The suffix of the scope - """ - for idx, ii in enumerate(self.descrpt_list): - ii.init_variables(graph, graph_def, suffix=f"{suffix}_{idx}") - - def get_tensor_names(self, suffix : str = "") -> Tuple[str]: - """Get names of tensors. - - Parameters - ---------- - suffix : str - The suffix of the scope - - Returns - ------- - Tuple[str] - Names of tensors - """ - tensor_names = [] - for idx, ii in enumerate(self.descrpt_list): - tensor_names.extend(ii.get_tensor_names(suffix=f"{suffix}_{idx}")) - return tuple(tensor_names) - - def pass_tensors_from_frz_model(self, - *tensors : tf.Tensor, - ) -> None: - """ - Pass the descrpt_reshape tensor as well as descrpt_deriv tensor from the frz graph_def - - Parameters - ---------- - *tensors : tf.Tensor - passed tensors - """ - jj = 0 - for ii in self.descrpt_list: - n_tensors = len(ii.get_tensor_names()) - ii.pass_tensors_from_frz_model(*tensors[jj:jj+n_tensors]) - jj += n_tensors diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/loc_frame.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/loc_frame.py deleted file mode 100644 index 81a8f684e948d9ac741fcc56126343cc7f641969..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/loc_frame.py +++ /dev/null @@ -1,389 +0,0 @@ -import numpy as np -from typing import Tuple, List - -from deepmd.env import tf -from deepmd.env import GLOBAL_TF_FLOAT_PRECISION -from deepmd.env import GLOBAL_NP_FLOAT_PRECISION -from deepmd.env import op_module -from deepmd.env import default_tf_session_config -from deepmd.utils.sess import run_sess -from .descriptor import Descriptor -from deepmd.utils.graph import get_tensor_by_name_from_graph - -@Descriptor.register("loc_frame") -class DescrptLocFrame (Descriptor) : - """Defines a local frame at each atom, and the compute the descriptor as local - coordinates under this frame. - - Parameters - ---------- - rcut - The cut-off radius - sel_a : list[str] - The length of the list should be the same as the number of atom types in the system. - `sel_a[i]` gives the selected number of type-i neighbors. - The full relative coordinates of the neighbors are used by the descriptor. - sel_r : list[str] - The length of the list should be the same as the number of atom types in the system. - `sel_r[i]` gives the selected number of type-i neighbors. - Only relative distance of the neighbors are used by the descriptor. - sel_a[i] + sel_r[i] is recommended to be larger than the maximally possible number of type-i neighbors in the cut-off radius. - axis_rule: list[int] - The length should be 6 times of the number of types. - - axis_rule[i*6+0]: class of the atom defining the first axis of type-i atom. 0 for neighbors with full coordinates and 1 for neighbors only with relative distance.\n\n\ - - axis_rule[i*6+1]: type of the atom defining the first axis of type-i atom.\n\n\ - - axis_rule[i*6+2]: index of the axis atom defining the first axis. Note that the neighbors with the same class and type are sorted according to their relative distance.\n\n\ - - axis_rule[i*6+3]: class of the atom defining the first axis of type-i atom. 0 for neighbors with full coordinates and 1 for neighbors only with relative distance.\n\n\ - - axis_rule[i*6+4]: type of the atom defining the second axis of type-i atom.\n\n\ - - axis_rule[i*6+5]: class of the atom defining the second axis of type-i atom. 0 for neighbors with full coordinates and 1 for neighbors only with relative distance. - """ - def __init__(self, - rcut: float, - sel_a : List[int], - sel_r : List[int], - axis_rule : List[int] - ) -> None: - """ - Constructor - """ - # args = ClassArg()\ - # .add('sel_a', list, must = True) \ - # .add('sel_r', list, must = True) \ - # .add('rcut', float, default = 6.0) \ - # .add('axis_rule',list, must = True) - # class_data = args.parse(jdata) - self.sel_a = sel_a - self.sel_r = sel_r - self.axis_rule = axis_rule - self.rcut_r = rcut - # ntypes and rcut_a === -1 - self.ntypes = len(self.sel_a) - assert(self.ntypes == len(self.sel_r)) - self.rcut_a = -1 - # numb of neighbors and numb of descrptors - self.nnei_a = np.cumsum(self.sel_a)[-1] - self.nnei_r = np.cumsum(self.sel_r)[-1] - self.nnei = self.nnei_a + self.nnei_r - self.ndescrpt_a = self.nnei_a * 4 - self.ndescrpt_r = self.nnei_r * 1 - self.ndescrpt = self.ndescrpt_a + self.ndescrpt_r - self.davg = None - self.dstd = None - - self.place_holders = {} - avg_zero = np.zeros([self.ntypes,self.ndescrpt]).astype(GLOBAL_NP_FLOAT_PRECISION) - std_ones = np.ones ([self.ntypes,self.ndescrpt]).astype(GLOBAL_NP_FLOAT_PRECISION) - sub_graph = tf.Graph() - with sub_graph.as_default(): - name_pfx = 'd_lf_' - for ii in ['coord', 'box']: - self.place_holders[ii] = tf.placeholder(GLOBAL_NP_FLOAT_PRECISION, [None, None], name = name_pfx+'t_'+ii) - self.place_holders['type'] = tf.placeholder(tf.int32, [None, None], name=name_pfx+'t_type') - self.place_holders['natoms_vec'] = tf.placeholder(tf.int32, [self.ntypes+2], name=name_pfx+'t_natoms') - self.place_holders['default_mesh'] = tf.placeholder(tf.int32, [None], name=name_pfx+'t_mesh') - self.stat_descrpt, descrpt_deriv, rij, nlist, axis, rot_mat \ - = op_module.descrpt (self.place_holders['coord'], - self.place_holders['type'], - self.place_holders['natoms_vec'], - self.place_holders['box'], - self.place_holders['default_mesh'], - tf.constant(avg_zero), - tf.constant(std_ones), - rcut_a = self.rcut_a, - rcut_r = self.rcut_r, - sel_a = self.sel_a, - sel_r = self.sel_r, - axis_rule = self.axis_rule) - self.sub_sess = tf.Session(graph = sub_graph, config=default_tf_session_config) - - - def get_rcut (self) -> float: - """ - Returns the cut-off radisu - """ - return self.rcut_r - - def get_ntypes (self) -> int: - """ - Returns the number of atom types - """ - return self.ntypes - - def get_dim_out (self) -> int: - """ - Returns the output dimension of this descriptor - """ - return self.ndescrpt - - def get_nlist (self) -> Tuple[tf.Tensor, tf.Tensor, List[int], List[int]]: - """ - Returns - ------- - nlist - Neighbor list - rij - The relative distance between the neighbor and the center atom. - sel_a - The number of neighbors with full information - sel_r - The number of neighbors with only radial information - """ - return self.nlist, self.rij, self.sel_a, self.sel_r - - def compute_input_stats (self, - data_coord : list, - data_box : list, - data_atype : list, - natoms_vec : list, - mesh : list, - input_dict : dict - ) -> None : - """ - Compute the statisitcs (avg and std) of the training data. The input will be normalized by the statistics. - - Parameters - ---------- - data_coord - The coordinates. Can be generated by deepmd.model.make_stat_input - data_box - The box. Can be generated by deepmd.model.make_stat_input - data_atype - The atom types. Can be generated by deepmd.model.make_stat_input - natoms_vec - The vector for the number of atoms of the system and different types of atoms. Can be generated by deepmd.model.make_stat_input - mesh - The mesh for neighbor searching. Can be generated by deepmd.model.make_stat_input - input_dict - Dictionary for additional input - """ - all_davg = [] - all_dstd = [] - if True: - sumv = [] - sumn = [] - sumv2 = [] - for cc,bb,tt,nn,mm in zip(data_coord,data_box,data_atype,natoms_vec,mesh) : - sysv,sysv2,sysn \ - = self._compute_dstats_sys_nonsmth(cc,bb,tt,nn,mm) - sumv.append(sysv) - sumn.append(sysn) - sumv2.append(sysv2) - sumv = np.sum(sumv, axis = 0) - sumn = np.sum(sumn, axis = 0) - sumv2 = np.sum(sumv2, axis = 0) - for type_i in range(self.ntypes) : - davg = sumv[type_i] / sumn[type_i] - dstd = self._compute_std(sumv2[type_i], sumv[type_i], sumn[type_i]) - for ii in range (len(dstd)) : - if (np.abs(dstd[ii]) < 1e-2) : - dstd[ii] = 1e-2 - all_davg.append(davg) - all_dstd.append(dstd) - self.davg = np.array(all_davg) - self.dstd = np.array(all_dstd) - - - def build (self, - coord_ : tf.Tensor, - atype_ : tf.Tensor, - natoms : tf.Tensor, - box_ : tf.Tensor, - mesh : tf.Tensor, - input_dict : dict, - reuse : bool = None, - suffix : str = '' - ) -> tf.Tensor: - """ - Build the computational graph for the descriptor - - Parameters - ---------- - coord_ - The coordinate of atoms - atype_ - The type of atoms - natoms - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - mesh - For historical reasons, only the length of the Tensor matters. - if size of mesh == 6, pbc is assumed. - if size of mesh == 0, no-pbc is assumed. - input_dict - Dictionary for additional inputs - reuse - The weights in the networks should be reused when get the variable. - suffix - Name suffix to identify this descriptor - - Returns - ------- - descriptor - The output descriptor - """ - davg = self.davg - dstd = self.dstd - with tf.variable_scope('descrpt_attr' + suffix, reuse = reuse) : - if davg is None: - davg = np.zeros([self.ntypes, self.ndescrpt]) - if dstd is None: - dstd = np.ones ([self.ntypes, self.ndescrpt]) - t_rcut = tf.constant(np.max([self.rcut_r, self.rcut_a]), - name = 'rcut', - dtype = GLOBAL_TF_FLOAT_PRECISION) - t_ntypes = tf.constant(self.ntypes, - name = 'ntypes', - dtype = tf.int32) - self.t_avg = tf.get_variable('t_avg', - davg.shape, - dtype = GLOBAL_TF_FLOAT_PRECISION, - trainable = False, - initializer = tf.constant_initializer(davg)) - self.t_std = tf.get_variable('t_std', - dstd.shape, - dtype = GLOBAL_TF_FLOAT_PRECISION, - trainable = False, - initializer = tf.constant_initializer(dstd)) - - coord = tf.reshape (coord_, [-1, natoms[1] * 3]) - box = tf.reshape (box_, [-1, 9]) - atype = tf.reshape (atype_, [-1, natoms[1]]) - - self.descrpt, self.descrpt_deriv, self.rij, self.nlist, self.axis, self.rot_mat \ - = op_module.descrpt (coord, - atype, - natoms, - box, - mesh, - self.t_avg, - self.t_std, - rcut_a = self.rcut_a, - rcut_r = self.rcut_r, - sel_a = self.sel_a, - sel_r = self.sel_r, - axis_rule = self.axis_rule) - self.descrpt = tf.reshape(self.descrpt, [-1, self.ndescrpt]) - tf.summary.histogram('descrpt', self.descrpt) - tf.summary.histogram('rij', self.rij) - tf.summary.histogram('nlist', self.nlist) - - return self.descrpt - - def get_rot_mat(self) -> tf.Tensor: - """ - Get rotational matrix - """ - return self.rot_mat - - def prod_force_virial(self, - atom_ener : tf.Tensor, - natoms : tf.Tensor - ) -> Tuple[tf.Tensor, tf.Tensor, tf.Tensor]: - """ - Compute force and virial - - Parameters - ---------- - atom_ener - The atomic energy - natoms - The number of atoms. This tensor has the length of Ntypes + 2 - natoms[0]: number of local atoms - natoms[1]: total number of atoms held by this processor - natoms[i]: 2 <= i < Ntypes+2, number of type i atoms - - Returns - ------- - force - The force on atoms - virial - The total virial - atom_virial - The atomic virial - """ - [net_deriv] = tf.gradients (atom_ener, self.descrpt) - tf.summary.histogram('net_derivative', net_deriv) - net_deriv_reshape = tf.reshape (net_deriv, [np.cast['int64'](-1), natoms[0] * np.cast['int64'](self.ndescrpt)]) - force = op_module.prod_force (net_deriv_reshape, - self.descrpt_deriv, - self.nlist, - self.axis, - natoms, - n_a_sel = self.nnei_a, - n_r_sel = self.nnei_r) - virial, atom_virial \ - = op_module.prod_virial (net_deriv_reshape, - self.descrpt_deriv, - self.rij, - self.nlist, - self.axis, - natoms, - n_a_sel = self.nnei_a, - n_r_sel = self.nnei_r) - tf.summary.histogram('force', force) - tf.summary.histogram('virial', virial) - tf.summary.histogram('atom_virial', atom_virial) - - return force, virial, atom_virial - - - def _compute_dstats_sys_nonsmth (self, - data_coord, - data_box, - data_atype, - natoms_vec, - mesh) : - dd_all \ - = run_sess(self.sub_sess, self.stat_descrpt, - feed_dict = { - self.place_holders['coord']: data_coord, - self.place_holders['type']: data_atype, - self.place_holders['natoms_vec']: natoms_vec, - self.place_holders['box']: data_box, - self.place_holders['default_mesh']: mesh, - }) - natoms = natoms_vec - dd_all = np.reshape(dd_all, [-1, self.ndescrpt * natoms[0]]) - start_index = 0 - sysv = [] - sysn = [] - sysv2 = [] - for type_i in range(self.ntypes): - end_index = start_index + self.ndescrpt * natoms[2+type_i] - dd = dd_all[:, start_index:end_index] - dd = np.reshape(dd, [-1, self.ndescrpt]) - start_index = end_index - # compute - sumv = np.sum(dd, axis = 0) - sumn = dd.shape[0] - sumv2 = np.sum(np.multiply(dd,dd), axis = 0) - sysv.append(sumv) - sysn.append(sumn) - sysv2.append(sumv2) - return sysv, sysv2, sysn - - - def _compute_std (self,sumv2, sumv, sumn) : - return np.sqrt(sumv2/sumn - np.multiply(sumv/sumn, sumv/sumn)) - - def init_variables(self, - graph: tf.Graph, - graph_def: tf.GraphDef, - suffix : str = "", - ) -> None: - """ - Init the embedding net variables with the given dict - - Parameters - ---------- - graph : tf.Graph - The input frozen model graph - graph_def : tf.GraphDef - The input frozen model graph_def - suffix : str, optional - The suffix of the scope - """ - self.davg = get_tensor_by_name_from_graph(graph, 'descrpt_attr%s/t_avg' % suffix) - self.dstd = get_tensor_by_name_from_graph(graph, 'descrpt_attr%s/t_std' % suffix) diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/se.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/se.py deleted file mode 100644 index 09bb57137cf2c3d7b5b87cce1c4aa6651c29b2b0..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/se.py +++ /dev/null @@ -1,118 +0,0 @@ -from typing import Tuple, List - -from deepmd.env import tf -from deepmd.utils.graph import get_embedding_net_variables_from_graph_def, get_tensor_by_name_from_graph -from .descriptor import Descriptor - - -class DescrptSe (Descriptor): - """A base class for smooth version of descriptors. - - Notes - ----- - All of these descriptors have an environmental matrix and an - embedding network (:meth:`deepmd.utils.network.embedding_net`), so - they can share some similiar methods without defining them twice. - - Attributes - ---------- - embedding_net_variables : dict - initial embedding network variables - descrpt_reshape : tf.Tensor - the reshaped descriptor - descrpt_deriv : tf.Tensor - the descriptor derivative - rij : tf.Tensor - distances between two atoms - nlist : tf.Tensor - the neighbor list - - """ - def _identity_tensors(self, suffix : str = "") -> None: - """Identify tensors which are expected to be stored and restored. - - Notes - ----- - These tensors will be indentitied: - self.descrpt_reshape : o_rmat - self.descrpt_deriv : o_rmat_deriv - self.rij : o_rij - self.nlist : o_nlist - Thus, this method should be called during building the descriptor and - after these tensors are initialized. - - Parameters - ---------- - suffix : str - The suffix of the scope - """ - self.descrpt_reshape = tf.identity(self.descrpt_reshape, name = 'o_rmat' + suffix) - self.descrpt_deriv = tf.identity(self.descrpt_deriv, name = 'o_rmat_deriv' + suffix) - self.rij = tf.identity(self.rij, name = 'o_rij' + suffix) - self.nlist = tf.identity(self.nlist, name = 'o_nlist' + suffix) - - def get_tensor_names(self, suffix : str = "") -> Tuple[str]: - """Get names of tensors. - - Parameters - ---------- - suffix : str - The suffix of the scope - - Returns - ------- - Tuple[str] - Names of tensors - """ - return (f'o_rmat{suffix}:0', f'o_rmat_deriv{suffix}:0', f'o_rij{suffix}:0', f'o_nlist{suffix}:0') - - def pass_tensors_from_frz_model(self, - descrpt_reshape : tf.Tensor, - descrpt_deriv : tf.Tensor, - rij : tf.Tensor, - nlist : tf.Tensor - ): - """ - Pass the descrpt_reshape tensor as well as descrpt_deriv tensor from the frz graph_def - - Parameters - ---------- - descrpt_reshape - The passed descrpt_reshape tensor - descrpt_deriv - The passed descrpt_deriv tensor - rij - The passed rij tensor - nlist - The passed nlist tensor - """ - self.rij = rij - self.nlist = nlist - self.descrpt_deriv = descrpt_deriv - self.descrpt_reshape = descrpt_reshape - - def init_variables(self, - graph: tf.Graph, - graph_def: tf.GraphDef, - suffix : str = "", - ) -> None: - """ - Init the embedding net variables with the given dict - - Parameters - ---------- - graph : tf.Graph - The input frozen model graph - graph_def : tf.GraphDef - The input frozen model graph_def - suffix : str, optional - The suffix of the scope - """ - self.embedding_net_variables = get_embedding_net_variables_from_graph_def(graph_def, suffix = suffix) - self.davg = get_tensor_by_name_from_graph(graph, 'descrpt_attr%s/t_avg' % suffix) - self.dstd = get_tensor_by_name_from_graph(graph, 'descrpt_attr%s/t_std' % suffix) - - @property - def precision(self) -> tf.DType: - """Precision of filter network.""" - return self.filter_precision diff --git a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/se_a.py b/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/se_a.py deleted file mode 100644 index de83f5926e7cc9e3252d37b85579caae9fea617e..0000000000000000000000000000000000000000 --- a/_skbuild/linux-x86_64-3.6/cmake-install/deepmd/descriptor/se_a.py +++ /dev/null @@ -1,924 +0,0 @@ -import math -import numpy as np -from typing import Tuple, List, Dict, Any - -from deepmd.env import tf -from deepmd.common import get_activation_func, get_precision, cast_precision -from deepmd.env import GLOBAL_TF_FLOAT_PRECISION -from deepmd.env import GLOBAL_NP_FLOAT_PRECISION -from deepmd.env import op_module -from deepmd.env import default_tf_session_config -from deepmd.utils.network import embedding_net, embedding_net_rand_seed_shift -from deepmd.utils.tabulate import DPTabulate -from deepmd.utils.type_embed import embed_atom_type -from deepmd.utils.sess import run_sess -from deepmd.utils.graph import load_graph_def, get_tensor_by_name_from_graph, get_tensor_by_name -from deepmd.utils.errors import GraphWithoutTensorError -from .descriptor import Descriptor -from .se import DescrptSe - -from deepmd.nvnmd.descriptor.se_a import descrpt2r4, build_davg_dstd, build_op_descriptor, filter_lower_R42GR, filter_GR2D -from deepmd.nvnmd.utils.config import nvnmd_cfg - -@Descriptor.register("se_e2_a") -@Descriptor.register("se_a") -class DescrptSeA (DescrptSe): - r"""DeepPot-SE constructed from all information (both angular and radial) of - atomic configurations. The embedding takes the distance between atoms as input. - - The descriptor :math:`\mathcal{D}^i \in \mathcal{R}^{M_1 \times M_2}` is given by [1]_ - - .. math:: - \mathcal{D}^i = (\mathcal{G}^i)^T \mathcal{R}^i (\mathcal{R}^i)^T \mathcal{G}^i_< - - where :math:`\mathcal{R}^i \in \mathbb{R}^{N \times 4}` is the coordinate - matrix, and each row of :math:`\mathcal{R}^i` can be constructed as follows - - .. math:: - (\mathcal{R}^i)_j = [ - \begin{array}{c} - s(r_{ji}) & \frac{s(r_{ji})x_{ji}}{r_{ji}} & \frac{s(r_{ji})y_{ji}}{r_{ji}} & \frac{s(r_{ji})z_{ji}}{r_{ji}} - \end{array} - ] - - where :math:`\mathbf{R}_{ji}=\mathbf{R}_j-\mathbf{R}_i = (x_{ji}, y_{ji}, z_{ji})` is - the relative coordinate and :math:`r_{ji}=\lVert \mathbf{R}_{ji} \lVert` is its norm. - The switching function :math:`s(r)` is defined as: - - .. math:: - s(r)= - \begin{cases} - \frac{1}{r}, & r