File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,9 @@ using .LibTBLIS
16
16
using . LibTBLIS: LibTBLIS, len_type, stride_type
17
17
18
18
export TBLIS
19
- export get_num_tblis_threads, set_num_tblis_threads
20
19
21
- get_num_tblis_threads () = convert (Int, LibTBLIS. tblis_get_num_threads ())
22
- set_num_tblis_threads (n) = LibTBLIS. tblis_set_num_threads (convert (Cuint, n))
20
+ get_num_threads () = convert (Int, LibTBLIS. tblis_get_num_threads ())
21
+ set_num_threads (n) = LibTBLIS. tblis_set_num_threads (convert (Cuint, n))
23
22
24
23
# TensorOperations
25
24
# ------------------
@@ -34,8 +33,8 @@ or BLAS.
34
33
struct TBLIS <: TensorOperations.AbstractBackend end
35
34
36
35
Base. @deprecate (tblisBackend (), TBLIS ())
37
- Base. @deprecate (tblis_get_num_threads (), get_num_tblis_threads ())
38
- Base. @deprecate (tblis_set_num_threads (n), set_num_tblis_threads (n))
36
+ Base. @deprecate (tblis_get_num_threads (), get_num_threads ())
37
+ Base. @deprecate (tblis_set_num_threads (n), set_num_threads (n))
39
38
40
39
include (" strided.jl" )
41
40
You can’t perform that action at this time.
0 commit comments