FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
llama-cpp-python/llama_cpp/_ggml.py at main · Simplegram/llama-cpp-python · GitHub
Simplegram
/
llama-cpp-python
Public
forked from
JamePeng/llama-cpp-python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
llama-cpp-python
/
llama_cpp
/
_ggml.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (8 loc) · 369 Bytes
Breadcrumbs
llama-cpp-python
/
llama_cpp
/
_ggml.py
Copy path
File metadata and controls
12 lines (8 loc) · 369 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
"""Internal module use at your own risk
This module provides a minimal interface for working with ggml tensors from llama-cpp-python
"""
import
os
import
pathlib
import
llama_cpp
.
_ctypes_extensions
as
ctypes_ext
libggml_base_path
=
pathlib
.
Path
(
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
)))
/
"lib"
libggml
=
ctypes_ext
.
load_shared_library
(
"ggml"
,
libggml_base_path
)
Back
|
FazBrowse Home
|
New Git URL