Skip to content

Commit

Permalink
mps: Remove test for now as direct matrix creation is not supported
Browse files Browse the repository at this point in the history
  • Loading branch information
tmc committed Sep 10, 2023
1 parent 39c8509 commit 8555133
Showing 1 changed file with 0 additions and 24 deletions.
24 changes: 0 additions & 24 deletions macos/mps/mps_test.go
Original file line number Diff line number Diff line change
@@ -1,31 +1,7 @@
package mps

import (
"fmt"
"testing"

"github.com/progrium/macdriver/macos/metal"
)

func TestMPSValid(t *testing.T) {}

func TestX(t *testing.T) {
d := metal.CreateSystemDefaultDevice()
cq := d.NewCommandQueue()
cb := cq.CommandBuffer()

mm := NewMatrixMultiplication()
m1 := NewMatrix()
m2 := NewMatrix()
m3 := NewMatrix()

mm.EncodeToCommandBufferLeftMatrixRightMatrixResultMatrix(cb, m1, m2, m3)

//ce.SetComputePipelineState(
fmt.Println(cb.Status())
cb.Commit()
fmt.Println(cb.Status())
fmt.Println(cb.Status())
fmt.Println(cb.Status())
fmt.Println(cb.Status())
}

0 comments on commit 8555133

Please sign in to comment.