Post marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as solved with 1 replies, 0 views
Replied In
Printing `MPSGraphTensor.dataType`
extension MPSDataType {
func description() -> String {
switch(self) {
case .float32:
return "f32"
case .int32:
return "i32"
// other...
default:
return "?"
}
}
}