Skip to content

Commit 0dc6d82

Browse files
committed
CUDA: Add support for FLOOR,CEIL,ROUND and TRUNC unary operators
1 parent 0767a17 commit 0dc6d82

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

ggml/include/ggml.h

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1975,8 +1975,6 @@ extern "C" {
19751975
int d1); // dilation dimension 1
19761976

19771977
GGML_API struct ggml_tensor * ggml_im2col_3d(
1978-
<<<<<<< HEAD
1979-
<<<<<<< HEAD
19801978
struct ggml_context * ctx,
19811979
struct ggml_tensor * a,
19821980
struct ggml_tensor * b,
@@ -1993,32 +1991,13 @@ extern "C" {
19931991
enum ggml_type dst_type);
19941992

19951993
// a: [OC*IC, KD, KH, KW]
1996-
=======
1997-
struct ggml_context * ctx,
1998-
struct ggml_tensor * a,
1999-
struct ggml_tensor * b,
2000-
int64_t IC,
2001-
int s0, // stride width
2002-
int s1, // stride height
2003-
int s2, // stride depth
2004-
int p0, // padding width
2005-
int p1, // padding height
2006-
int p2, // padding depth
2007-
int d0, // dilation width
2008-
int d1, // dilation height
2009-
int d2, // dilation depth
2010-
enum ggml_type dst_type);
2011-
2012-
// a: [OC*IC, KD, KH, KW]
2013-
>>>>>>> 1b66dc4a6 (fix a bag)
20141994
// b: [N*IC, ID, IH, IW]
20151995
// result: [N*OC, OD, OH, OW]
20161996
GGML_API struct ggml_tensor * ggml_conv_3d(
20171997
struct ggml_context * ctx,
20181998
struct ggml_tensor * a,
20191999
struct ggml_tensor * b,
20202000
int64_t IC,
2021-
<<<<<<< HEAD
20222001
int s0, // stride width
20232002
int s1, // stride height
20242003
int s2, // stride depth
@@ -2028,17 +2007,6 @@ extern "C" {
20282007
int d0, // dilation width
20292008
int d1, // dilation height
20302009
int d2 // dilation depth
2031-
=======
2032-
int s0, // stride width
2033-
int s1, // stride height
2034-
int s2, // stride depth
2035-
int p0, // padding width
2036-
int p1, // padding height
2037-
int p2, // padding depth
2038-
int d0, // dilation width
2039-
int d1, // dilation height
2040-
int d2 // dilation depth
2041-
>>>>>>> 1b66dc4a6 (fix a bag)
20422010
);
20432011

20442012
// kernel size is a->ne[0] x a->ne[1]

0 commit comments

Comments
 (0)