Skip to content

Commit 8555133

Browse files
committed
mps: Remove test for now as direct matrix creation is not supported
1 parent 39c8509 commit 8555133

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

macos/mps/mps_test.go

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,7 @@
11
package mps
22

33
import (
4-
"fmt"
54
"testing"
6-
7-
"github.com/progrium/macdriver/macos/metal"
85
)
96

107
func TestMPSValid(t *testing.T) {}
11-
12-
func TestX(t *testing.T) {
13-
d := metal.CreateSystemDefaultDevice()
14-
cq := d.NewCommandQueue()
15-
cb := cq.CommandBuffer()
16-
17-
mm := NewMatrixMultiplication()
18-
m1 := NewMatrix()
19-
m2 := NewMatrix()
20-
m3 := NewMatrix()
21-
22-
mm.EncodeToCommandBufferLeftMatrixRightMatrixResultMatrix(cb, m1, m2, m3)
23-
24-
//ce.SetComputePipelineState(
25-
fmt.Println(cb.Status())
26-
cb.Commit()
27-
fmt.Println(cb.Status())
28-
fmt.Println(cb.Status())
29-
fmt.Println(cb.Status())
30-
fmt.Println(cb.Status())
31-
}

0 commit comments

Comments
 (0)