# AVX2 Configuration

**URL:** https://community.konduit.ai/t/avx2-configuration/1308
**Category:** Uncategorized
**Created:** [April 10, 2021, 4:01am UTC](https://community.konduit.ai/t/avx2-configuration/1308 "2021-04-10T04:01:30Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![al-the-bear](https://yyz1.discourse-cdn.com/flex035/user_avatar/community.konduit.ai/al-the-bear/32/513_2.png) [@al-the-bear](https://community.konduit.ai/u/al-the-bear)
#### Post date: [April 10, 2021, 4:01am UTC](https://community.konduit.ai/t/avx2-configuration/1308/1 "2021-04-10T04:01:30Z")

</div>

Even though I have AVX2 configured in the POM.xml

…  
  
\<dl4j-master.version\>1.0.0-beta7\</dl4j-master.version\>  
  
  
\<nd4j.backend\>nd4j-native\</nd4j.backend\>  
\<java.version\>1.8\</java.version\>  
\<maven-compiler-plugin.version\>3.6.1\</maven-compiler-plugin.version\>  
\<maven.minimum.version\>3.3.1\</maven.minimum.version\>  
\<exec-maven-plugin.version\>1.4.0\</exec-maven-plugin.version\>  
\<maven-shade-plugin.version\>2.4.3\</maven-shade-plugin.version\>  
\<jcommon.version\>1.0.23\</jcommon.version\>  
\<jfreechart.version\>1.0.13\</jfreechart.version\>  
\<logback.version\>1.1.7\</logback.version\>  
\<project.build.sourceEncoding\>UTF-8\</project.build.sourceEncoding\>

```
<dependencyManagement>
    <dependencies>

        <dependency>
            <groupId>org.nd4j</groupId>
            <artifactId>nd4j-native</artifactId>
            <version>${nd4j.version}</version>
        </dependency>
        <dependency>
            <groupId>org.nd4j</groupId>
            <artifactId>nd4j-native</artifactId>
            <version>${nd4j.version}</version>
            <classifier>windows-x86_64-avx2</classifier>
        </dependency>

```

…

I still get the message:

o.n.l.c.n.CpuNDArrayFactory - \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* CPU Feature Check Warning \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*  
o.n.l.c.n.CpuNDArrayFactory - Warning: Initializing ND4J with Generic x86 binary on a CPU with AVX/AVX2 support  
o.n.l.c.n.CpuNDArrayFactory - Using ND4J with AVX/AVX2 will improve performance. See [deeplearning4j.org/cpu](http://deeplearning4j.org/cpu) for more details  
o.n.l.c.n.CpuNDArrayFactory - Or set environment variable ND4J\_IGNORE\_AVX=true to suppress this warning  
o.n.l.c.n.CpuNDArrayFactory - \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*

Any idea what is going wrong?

---

<div class="post-metadata">

### Author: ![al-the-bear](https://yyz1.discourse-cdn.com/flex035/user_avatar/community.konduit.ai/al-the-bear/32/513_2.png) [@al-the-bear](https://community.konduit.ai/u/al-the-bear)
#### Post date: [April 12, 2021, 8:37am UTC](https://community.konduit.ai/t/avx2-configuration/1308/2 "2021-04-12T08:37:32Z")

</div>

Ok, I found it. It’s deeplearning4j.masterversion and it need to go in the other dependencies section.
