Subject: CGAL users discussion list
List archive
- From: Aaron Smith <>
- To: "" <>
- Subject: [cgal-discuss] Advice with Intel compilers
- Date: Tue, 8 Dec 2020 23:06:59 +0000
- Accept-language: en-US
- Authentication-results: mail2-smtp-roc.national.inria.fr; spf=None ; spf=Pass ; spf=None
- Ironport-phdr: 9a23:Kx+VJR8AQtvynP9uRHKM819IXTAuvvDOBiVQ1KB20+0cTK2v8tzYMVDF4r011RmVBNqdsq0awLOL6ejJYi8p2d65qncMcZhBBVcuqP49uEgeOvODElDxN/XwbiY3T4xoXV5h+GynYwAOQJ6tL1LdrWev4jEMBx7xKRR6JvjvGo7Vks+7y/2+94fcbglVhjexe65+IRe3oAneq8UbgZVuIbstxxXUpXdFZ/5Yzn5yK1KJmBb86Maw/Jp9/ClVpvks6c1OX7jkcqohVbBXAygoPG4z5M3wqBnMVhCP6WcGUmUXiRVHHQ7I5wznU5jrsyv6su192DSGPcDzULs5Vyiu47ttRRT1higHLTo5+3zJhMJ2gqxQvRatqwF/zoLRZoyeKfhwcb7Hfd4CRWRPQNtfVzBPDI2/bosAE+UOMP1CoIXholsDtweyCRWuCe7p1zRGhmX23ao/0+k5DQzJxhYgH9UIsH/Jsdv1MaYSUfy1zKLVyjjMdelW2Sz46IjJbhAhoeqBXbdxccrN00UgCR7KjkiJpIHjIjia2fgDvXKB4Op8SeKglXQnqwdprzag2sshl4bEi54Wx13G+yt0w4U4KNm3RUB7fNKqEJVeuz+UOoZ3TM0vR2VltSk4x7MJtpO3YDUGxZY7yhPfd/CKdZWD7BzkVOaUOzh4hXRldaqjiBa960egzvfwWdWo31tMsyFLkcHMu2gQ2xHQ8MSKTuFx8lmi1DqV1w3e7vlILEE0mKbBL5Msw6Q8mocOvUjeBCP6hkX7gaCOekk5+eWk8eDqbq/pq5OGKoN5iAfzObk0lMOlG+Q3KA0OUnCb+eui0L3j+lX0QLJXjv0qnanZt5HaJcIUpqKgHQBU3Zos6xalADeg39QXg2ALIVJfdBKCjojpJ0vCL+7lAveim1iskTFryO7aPrD5H5nALWLPnbP7cbpj6ENQ0go+wNRH65JREL4BIfbzWkHrtNzfCx80Kxa7w/z8CNV414MeRWKPD7ScMKPTrV+E/PwgLPSRZIMNojbyN+Al5+LyjX8+gVISYaap0oETaHyhA/tmIl6ZbmbxgtcaCmcHpRE+TezviF2aSzFffXeyX6Qm5jE6Eo2qF4nDRpr+yICGiW2wEZRSI2xHEVuRCmzAdoOeWv5KZjjYaptqnTUAELSgUIQ8zgqGtQngyrMhIPCCqQMCspe2/dFv4OubrhQz6Tw8W82HyGSMU2Fcm2IUATI6wfYs8gRG1l6f3P0g0LRjHttJ6qYQD15rZ66Z9PRzDpXJYiyEe96ITFi8RdD3UzQwUpQ8z8JcOh8hSeXntQjK2m+RO5FQj6aCVc4x876a0nTsdZ4kliT2kZI5hlxjefNhcG2rgqklplrUGpLGlESfmOOnZa8c1SjC+SLei2+PoAdVXBMiCag=
Hi cgal-discuss,
I am new to this list so first of all thanks for the library. I have been using CGAL to build Voronoi tessellations in one of my academic research codes. This works well with gcc and clang compilers, but when I try to use intel compilers on some
supercomputers I get errors like the ones shown below (for example). I have success with Intel on 1 supercomputer but get these errors on 3 others. Is this a known issue? Am I missing something or is Intel not expected to be supported?
Note: CGAL version 5.1.1 and Intel 19 on linux (but no root access) systems. Installing headers locally and including via Makefile (not from CMake). I am using -std=c++17
Thanks,
Aaron
—
local/include/CGAL/Kernel/hash_functions.h(25): error: namespace "std" has no member "enable_if_t"
inline std::enable_if_t<std::is_same<typename K::Rep_tag, Cartesian_tag>::value, std::size_t>
^
In file included from local/include/CGAL/Kernel/global_functions.h(25),
from local/include/CGAL/Cartesian/Cartesian_base.h(22),
from local/include/CGAL/Simple_cartesian.h(20),
from local/include/CGAL/Exact_predicates_inexact_constructions_kernel.h(20),
from src/geometry/cgal.h(16),
from src/geometry/cgal.cc(13):
local/include/CGAL/Kernel/hash_functions.h(25): error: expected a ";"
inline std::enable_if_t<std::is_same<typename K::Rep_tag, Cartesian_tag>::value, std::size_t>
^
In file included from local/include/CGAL/Kernel/global_functions.h(25),
from local/include/CGAL/Cartesian/Cartesian_base.h(22),
from local/include/CGAL/Simple_cartesian.h(20),
from local/include/CGAL/Exact_predicates_inexact_constructions_kernel.h(20),
from src/geometry/cgal.h(16),
from src/geometry/cgal.cc(13):
local/include/CGAL/Kernel/hash_functions.h(195): error: no instance of overloaded function "CGAL::hash_value" matches the argument list
argument types are: (const CGAL::Bbox_2)
return CGAL::hash_value (bbox);
^
local/include/CGAL/Kernel/hash_functions.h(22): note: this candidate was rejected because at least one template argument could not be deduced
using boost::hash_value;
^
- [cgal-discuss] Advice with Intel compilers, Aaron Smith, 12/09/2020
- Re: [cgal-discuss] Advice with Intel compilers, Sebastien Loriot, 12/09/2020
- Re: [cgal-discuss] Advice with Intel compilers, Marc Glisse, 12/09/2020
- Re: [cgal-discuss] Advice with Intel compilers, Andrew Cunningham, 12/09/2020
- Re: [cgal-discuss] Advice with Intel compilers, Sebastien Loriot, 12/09/2020
Archive powered by MHonArc 2.6.19+.