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
OpenDAS
bitsandbytes
Commits
1eec77d3
Commit
1eec77d3
authored
Oct 27, 2022
by
Tom Aarsen
Browse files
Remove trailing whitespace & ensure newline at EOF
parent
31f66895
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
111 additions
and
117 deletions
+111
-117
CHANGELOG.md
CHANGELOG.md
+1
-1
CONTRIBUTING.md
CONTRIBUTING.md
+1
-1
Makefile
Makefile
+12
-12
README.md
README.md
+3
-3
bitsandbytes/autograd/_functions.py
bitsandbytes/autograd/_functions.py
+1
-1
bitsandbytes/functional.py
bitsandbytes/functional.py
+1
-1
bitsandbytes/nn/modules.py
bitsandbytes/nn/modules.py
+1
-1
compile_from_source.md
compile_from_source.md
+2
-2
csrc/cpu_ops.cpp
csrc/cpu_ops.cpp
+1
-1
csrc/kernels.cu
csrc/kernels.cu
+51
-51
csrc/kernels.cuh
csrc/kernels.cuh
+19
-21
csrc/ops.cu
csrc/ops.cu
+6
-6
csrc/ops.cuh
csrc/ops.cuh
+8
-8
csrc/pythonInterface.c
csrc/pythonInterface.c
+4
-5
cuda_install.sh
cuda_install.sh
+0
-3
No files found.
CHANGELOG.md
View file @
1eec77d3
CONTRIBUTING.md
View file @
1eec77d3
Makefile
View file @
1eec77d3
README.md
View file @
1eec77d3
bitsandbytes/autograd/_functions.py
View file @
1eec77d3
bitsandbytes/functional.py
View file @
1eec77d3
bitsandbytes/nn/modules.py
View file @
1eec77d3
compile_from_source.md
View file @
1eec77d3
csrc/cpu_ops.cpp
View file @
1eec77d3
csrc/kernels.cu
View file @
1eec77d3
csrc/kernels.cuh
View file @
1eec77d3
...
...
@@ -121,5 +121,3 @@ template <int THREADS, int ITEMS_PER_THREAD, int TILE_ROWS, int TILE_COLS, int T
template
<
int
FORMAT
>
__global__
void
kExtractOutliers
(
char
*
A
,
int
*
idx
,
char
*
out
,
int
idx_size
,
int
rowsA
,
int
colsA
,
int
tiledRowsA
,
int
tiledColsA
);
#endif
csrc/ops.cu
View file @
1eec77d3
csrc/ops.cuh
View file @
1eec77d3
csrc/pythonInterface.c
View file @
1eec77d3
...
...
@@ -290,4 +290,3 @@ extern "C"
void
cquantize_blockwise_cpu_fp32
(
float
*
code
,
float
*
A
,
float
*
absmax
,
unsigned
char
*
out
,
long
long
blocksize
,
long
long
n
){
quantize_cpu
(
code
,
A
,
absmax
,
out
,
blocksize
,
n
);
}
void
cdequantize_blockwise_cpu_fp32
(
float
*
code
,
unsigned
char
*
A
,
float
*
absmax
,
float
*
out
,
long
long
blocksize
,
long
long
n
){
dequantize_cpu
(
code
,
A
,
absmax
,
out
,
blocksize
,
n
);
}
}
cuda_install.sh
View file @
1eec77d3
...
...
@@ -76,6 +76,3 @@ if [[ -n "$CUDA_VERSION" ]]; then
else
echo
""
fi
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