Publishing 2019 R1 content
[platform/upstream/dldt.git] / inference-engine / thirdparty / clDNN / kernel_selector / core / actual_kernels / fully_connected / fully_connected_kernel_selector.cpp
index 529e1ca..80a345e 100644 (file)
@@ -1,5 +1,5 @@
 /*
-// Copyright (c) 2016 Intel Corporation
+// Copyright (c) 2019 Intel Corporation
 //
 // Licensed under the Apache License, Version 2.0 (the "License");
 // you may not use this file except in compliance with the License.
@@ -31,6 +31,7 @@
 #include "fully_connected_kernel_image_tutorial.h"
 #include "fully_connected_kernel_MMAD.h"
 #include "fully_connected_kernel_mmad_batched.h"
+#include "fully_connected_kernel_imad.h"
 
 namespace kernel_selector {
 
@@ -51,10 +52,11 @@ namespace kernel_selector {
         Attach<FullyConnected_bf_io_input_spatial>();
         Attach<FullyConnectedKernelMMAD>();
         Attach<FullyConnected_mmad_batched>();
+        Attach<FullyConnectedKernelIMAD>();
     }
 
     KernelsData fully_connected_kernel_selector::GetBestKernels(const Params& params, const optional_params& options) const
     {
         return GetAutoTuneBestKernel(params, options, KernelType::FULLY_CONNECTED);
     }
-}
\ No newline at end of file
+}