Skip to content

Commit

Permalink
Fixed link stage on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
ilya-lavrenov committed Nov 13, 2023
1 parent 056eb9f commit e70a3f2
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ using namespace paddlenlp::fast_tokenizer;
#undef tokenizer
#undef m_tokenizer

class OPENVINO_API BPETokenizer : public ov::op::Op {
class BPETokenizer : public ov::op::Op {
public:
OPENVINO_OP("BPETokenizer");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

const std::array<std::vector<uint8_t>, 256> create_bytes_to_chars_map();

class OPENVINO_API BytesToChars : public ov::op::Op {
class BytesToChars : public ov::op::Op {
public:
OPENVINO_OP("BytesToChars");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <openvino/op/op.hpp>

class OPENVINO_API CaseFold : public ov::op::Op {
class CaseFold : public ov::op::Op {
public:
OPENVINO_OP("CaseFold");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <openvino/op/op.hpp>

class OPENVINO_API CharsToBytes : public ov::op::Op {
class CharsToBytes : public ov::op::Op {
public:
OPENVINO_OP("CharsToBytes");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <openvino/op/op.hpp>

class OPENVINO_API CombineSegments : public ov::op::Op {
class CombineSegments : public ov::op::Op {
public:
OPENVINO_OP("CombineSegments");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <openvino/op/op.hpp>

class OPENVINO_API NormalizeUnicode : public ov::op::Op {
class NormalizeUnicode : public ov::op::Op {
public:
OPENVINO_OP("NormalizeUnicode");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include <openvino/op/op.hpp>

// Takes a ragged tensor with one ragged right-most dimension and produces a normal tensor
class OPENVINO_API RaggedToDense : public ov::op::Op {
class RaggedToDense : public ov::op::Op {
public:
OPENVINO_OP("RaggedToDense");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
using namespace ov;
using namespace ov::opset10;

class OPENVINO_API RegexNormalization : public ov::op::Op {
class RegexNormalization : public ov::op::Op {
public:
OPENVINO_OP("RegexNormalization");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ using namespace ov;
using namespace paddlenlp::fast_tokenizer;


class OPENVINO_API RegexSplit : public ov::op::Op {
class RegexSplit : public ov::op::Op {
public:
OPENVINO_OP("RegexSplit");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include <openvino/op/op.hpp>

class OPENVINO_API VocabDecoder : public ov::op::Op {
class VocabDecoder : public ov::op::Op {
public:
OPENVINO_OP("VocabDecoder");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ using namespace paddlenlp::fast_tokenizer;

#undef tokenizer

class OPENVINO_API WordpieceTokenizer : public ov::op::Op {
class WordpieceTokenizer : public ov::op::Op {
public:
OPENVINO_OP("WordpieceTokenizer");

Expand Down

0 comments on commit e70a3f2

Please sign in to comment.