mirror of
https://github.com/marian-nmt/marian.git
synced 2024-12-02 16:39:38 +03:00
Move nth_element to mblas
This commit is contained in:
parent
7b96d35fe1
commit
191e7a6835
@ -39,10 +39,10 @@ cuda_add_executable(
|
|||||||
common/decoder_main.cpp
|
common/decoder_main.cpp
|
||||||
gpu/decoder/ape_penalty.cu
|
gpu/decoder/ape_penalty.cu
|
||||||
gpu/decoder/encoder_decoder.cu
|
gpu/decoder/encoder_decoder.cu
|
||||||
gpu/decoder/nth_element.cu
|
|
||||||
gpu/dl4mt/encoder.cu
|
gpu/dl4mt/encoder.cu
|
||||||
gpu/dl4mt/gru.cu
|
gpu/dl4mt/gru.cu
|
||||||
gpu/mblas/matrix.cu
|
gpu/mblas/matrix.cu
|
||||||
|
gpu/mblas/nth_element.cu
|
||||||
gpu/npz_converter.cu
|
gpu/npz_converter.cu
|
||||||
common/loader_factory.cpp
|
common/loader_factory.cpp
|
||||||
$<TARGET_OBJECTS:libcommon>
|
$<TARGET_OBJECTS:libcommon>
|
||||||
@ -55,8 +55,8 @@ cuda_add_library(amunmt SHARED
|
|||||||
python/amunmt.cpp
|
python/amunmt.cpp
|
||||||
gpu/decoder/ape_penalty.cu
|
gpu/decoder/ape_penalty.cu
|
||||||
gpu/decoder/encoder_decoder.cu
|
gpu/decoder/encoder_decoder.cu
|
||||||
gpu/decoder/nth_element.cu
|
|
||||||
gpu/mblas/matrix.cu
|
gpu/mblas/matrix.cu
|
||||||
|
gpu/mblas/nth_element.cu
|
||||||
gpu/dl4mt/encoder.cu
|
gpu/dl4mt/encoder.cu
|
||||||
gpu/dl4mt/gru.cu
|
gpu/dl4mt/gru.cu
|
||||||
gpu/npz_converter.cu
|
gpu/npz_converter.cu
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
#include "common/scorer.h"
|
#include "common/scorer.h"
|
||||||
#include "gpu/mblas/matrix.h"
|
#include "gpu/mblas/matrix.h"
|
||||||
#include "gpu/decoder/nth_element.h"
|
#include "gpu/mblas/nth_element.h"
|
||||||
|
|
||||||
#include <thrust/device_vector.h>
|
#include <thrust/device_vector.h>
|
||||||
#include <thrust/functional.h>
|
#include <thrust/functional.h>
|
||||||
|
@ -27,8 +27,6 @@
|
|||||||
|
|
||||||
#include "gpu/decoder/encoder_decoder.h"
|
#include "gpu/decoder/encoder_decoder.h"
|
||||||
#include "gpu/types-gpu.h"
|
#include "gpu/types-gpu.h"
|
||||||
#include "gpu/nth_element.h"
|
|
||||||
|
|
||||||
|
|
||||||
namespace GPU {
|
namespace GPU {
|
||||||
namespace mblas {
|
namespace mblas {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#include "gpu/decoder/nth_element.h"
|
#include "gpu/mblas/nth_element.h"
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user