Skip to content

Commit 01f299a

Browse files
authored
rm tropical gemm deps (#7)
* rm dones * run coverage
1 parent 87b5a43 commit 01f299a

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,10 @@ jobs:
3333
${{ runner.os }}-
3434
- uses: julia-actions/julia-buildpkg@v1
3535
- uses: julia-actions/julia-runtest@v1
36+
- uses: julia-actions/julia-processcoverage@v1
37+
- uses: coverallsapp/github-action@master
38+
with:
39+
github-token: ${{ secrets.GITHUB_TOKEN }}
40+
flag-name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
41+
parallel: false
42+
path-to-lcov: lcov.info

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Polynomials = "f27b6e38-b328-58d1-80ce-0feddd5e7a45"
1717
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
1818
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1919
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
20-
TropicalGEMM = "a4ad3063-64a7-4bad-8738-34ed09bc0236"
20+
SIMDTypes = "94e857df-77ce-4151-89e5-788b33177be4"
2121
TropicalNumbers = "b3a74e9c-7526-4576-a4eb-79c0d4c32334"
2222
Viznet = "52a3aca4-6234-47fd-b74a-806bdf78ede9"
2323

@@ -32,7 +32,7 @@ OMEinsumContractionOrders = "0.6"
3232
Polynomials = "2.0"
3333
Primes = "0.5"
3434
Requires = "1"
35-
TropicalGEMM = "0.1"
35+
SIMDTypes = "0.1"
3636
TropicalNumbers = "0.4, 0.5"
3737
Viznet = "0.3"
3838
julia = "1"

src/GraphTensorNetworks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module GraphTensorNetworks
22

33
using OMEinsumContractionOrders: SlicedEinsum
44
using Core: Argument
5-
using TropicalGEMM, TropicalNumbers
5+
using TropicalNumbers
66
using OMEinsum
77
using OMEinsum: timespace_complexity, collect_ixs
88
using Graphs

src/cuda.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using .CUDA
2-
using TropicalGEMM: XTranspose, NativeTypes, Tropical, TropicalTypes
2+
using SIMDTypes: NativeTypes # avoid ambiguity error when using `TropicalGEMM`
3+
using TropicalNumbers: Tropical, TropicalTypes
34
using LinearAlgebra
45

56
# patch
@@ -42,4 +43,4 @@ function LinearAlgebra.permutedims!(dest::AbstractGPUArray, src::AbstractGPUArra
4243
end
4344
gpu_call(permutedims_kernel, dest, src, perm)
4445
return dest
45-
end
46+
end

0 commit comments

Comments
 (0)