Skip to content
Snippets Groups Projects
Commit f44d2613 authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

More fixes

parent 4299f4d1
No related branches found
No related tags found
No related merge requests found
......@@ -17,14 +17,14 @@ build:ubuntu_cpp:
- build_cpp/
- install_cpp/
build:ubuntu_cpp_gcc10:
build:ubuntu_cpp_g++10:
stage: build
needs: []
tags:
- docker
script:
- apt install -y gcc-10
- apt install -y g++-10
- mkdir -p build_cpp
- mkdir -p install_cpp
- cd build_cpp
......@@ -32,14 +32,14 @@ build:ubuntu_cpp_gcc10:
- cmake -DCMAKE_INSTALL_PREFIX:PATH=../install_cpp -DCMAKE_BUILD_TYPE=Debug -DWERROR=ON -DCOVERAGE=ON ..
- make -j4 all install
build:ubuntu_cpp_gcc12:
build:ubuntu_cpp_g++12:
stage: build
needs: []
tags:
- docker
script:
- apt install -y gcc-12
- apt install -y g++-12
- mkdir -p build_cpp
- mkdir -p install_cpp
- cd build_cpp
......
......@@ -165,8 +165,8 @@ class GenericOperator_Op
~GenericOperator_Op() = default;
void setBackend(const std::string & /*name*/) { printf("setBackend: not available yet.\n"); }
void setDatatype(const DataType & /*datatype*/) { printf("setDatatype: not available yet.\n"); }
void setBackend(const std::string & /*name*/) override { printf("setBackend: not available yet.\n"); }
void setDatatype(const DataType & /*datatype*/) override { printf("setDatatype: not available yet.\n"); }
void forward() override final { printf("forward: not available yet.\n"); }
void backward() override final { printf("backward: not available yet.\n"); }
......
......@@ -194,7 +194,7 @@ public:
* generic type caster for std::any is not feasable.
* The strategy here is to keep a copy of each attribute in py::object that is updated everytime.
*/
py::object getAttrPy(const std::string& name) const {
py::object getAttrPy(const std::string& name) const override final {
return mAttrsPy.at(name);
};
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment