Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
jerrrrry
infinicore
Commits
1c25a902
Commit
1c25a902
authored
Dec 01, 2025
by
Ceng23333
Committed by
thatPepe
Dec 01, 2025
Browse files
issue/688: 修复issue 634引入编译问题
Signed-off-by:
Ceng23333
<
441651826@qq.com
>
parent
2f3f4076
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
17 deletions
+0
-17
src/infinicore/pybind11/infinicore.cc
src/infinicore/pybind11/infinicore.cc
+0
-2
src/infinicore/pybind11/nn.hpp
src/infinicore/pybind11/nn.hpp
+0
-15
No files found.
src/infinicore/pybind11/infinicore.cc
View file @
1c25a902
...
@@ -6,7 +6,6 @@
...
@@ -6,7 +6,6 @@
#include "device.hpp"
#include "device.hpp"
#include "device_event.hpp"
#include "device_event.hpp"
#include "dtype.hpp"
#include "dtype.hpp"
#include "nn.hpp"
#include "ops.hpp"
#include "ops.hpp"
#include "tensor.hpp"
#include "tensor.hpp"
...
@@ -19,7 +18,6 @@ PYBIND11_MODULE(_infinicore, m) {
...
@@ -19,7 +18,6 @@ PYBIND11_MODULE(_infinicore, m) {
dtype
::
bind
(
m
);
dtype
::
bind
(
m
);
ops
::
bind
(
m
);
ops
::
bind
(
m
);
tensor
::
bind
(
m
);
tensor
::
bind
(
m
);
pybind11_nn
::
bind
(
m
);
}
}
}
// namespace infinicore
}
// namespace infinicore
src/infinicore/pybind11/nn.hpp
deleted
100644 → 0
View file @
2f3f4076
#pragma once
#include <pybind11/pybind11.h>
#include "nn/rope.hpp"
namespace
py
=
pybind11
;
namespace
infinicore
::
pybind11_nn
{
inline
void
bind
(
py
::
module
&
m
)
{
bind_rope
(
m
);
}
}
// namespace infinicore::pybind11_nn
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment