runner

package
v2.14.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 8, 2023 License: BSD-3-Clause Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_tensorflow_compiler_xla_runtime_runner_runner_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type ArgumentProto

type ArgumentProto struct {

	// Types that are assignable to Argument:
	//
	//	*ArgumentProto_Scalar
	//	*ArgumentProto_Tensor
	Argument isArgumentProto_Argument `protobuf_oneof:"argument"`
	// contains filtered or unexported fields
}

func (*ArgumentProto) Descriptor deprecated

func (*ArgumentProto) Descriptor() ([]byte, []int)

Deprecated: Use ArgumentProto.ProtoReflect.Descriptor instead.

func (*ArgumentProto) GetArgument

func (m *ArgumentProto) GetArgument() isArgumentProto_Argument

func (*ArgumentProto) GetScalar

func (x *ArgumentProto) GetScalar() *ScalarProto

func (*ArgumentProto) GetTensor

func (x *ArgumentProto) GetTensor() *TensorProto

func (*ArgumentProto) ProtoMessage

func (*ArgumentProto) ProtoMessage()

func (*ArgumentProto) ProtoReflect

func (x *ArgumentProto) ProtoReflect() protoreflect.Message

func (*ArgumentProto) Reset

func (x *ArgumentProto) Reset()

func (*ArgumentProto) String

func (x *ArgumentProto) String() string

type ArgumentProto_Scalar

type ArgumentProto_Scalar struct {
	Scalar *ScalarProto `protobuf:"bytes,1,opt,name=scalar,proto3,oneof"`
}

type ArgumentProto_Tensor

type ArgumentProto_Tensor struct {
	Tensor *TensorProto `protobuf:"bytes,2,opt,name=tensor,proto3,oneof"`
}

type ArgumentsProto

type ArgumentsProto struct {
	Arguments []*ArgumentProto `protobuf:"bytes,1,rep,name=arguments,proto3" json:"arguments,omitempty"`
	// contains filtered or unexported fields
}

func (*ArgumentsProto) Descriptor deprecated

func (*ArgumentsProto) Descriptor() ([]byte, []int)

Deprecated: Use ArgumentsProto.ProtoReflect.Descriptor instead.

func (*ArgumentsProto) GetArguments

func (x *ArgumentsProto) GetArguments() []*ArgumentProto

func (*ArgumentsProto) ProtoMessage

func (*ArgumentsProto) ProtoMessage()

func (*ArgumentsProto) ProtoReflect

func (x *ArgumentsProto) ProtoReflect() protoreflect.Message

func (*ArgumentsProto) Reset

func (x *ArgumentsProto) Reset()

func (*ArgumentsProto) String

func (x *ArgumentsProto) String() string

type ResultProto

type ResultProto struct {

	// Types that are assignable to Result:
	//
	//	*ResultProto_Scalar
	//	*ResultProto_Tensor
	Result isResultProto_Result `protobuf_oneof:"result"`
	// contains filtered or unexported fields
}

func (*ResultProto) Descriptor deprecated

func (*ResultProto) Descriptor() ([]byte, []int)

Deprecated: Use ResultProto.ProtoReflect.Descriptor instead.

func (*ResultProto) GetResult

func (m *ResultProto) GetResult() isResultProto_Result

func (*ResultProto) GetScalar

func (x *ResultProto) GetScalar() *ScalarProto

func (*ResultProto) GetTensor

func (x *ResultProto) GetTensor() *TensorProto

func (*ResultProto) ProtoMessage

func (*ResultProto) ProtoMessage()

func (*ResultProto) ProtoReflect

func (x *ResultProto) ProtoReflect() protoreflect.Message

func (*ResultProto) Reset

func (x *ResultProto) Reset()

func (*ResultProto) String

func (x *ResultProto) String() string

type ResultProto_Scalar

type ResultProto_Scalar struct {
	Scalar *ScalarProto `protobuf:"bytes,1,opt,name=scalar,proto3,oneof"`
}

type ResultProto_Tensor

type ResultProto_Tensor struct {
	Tensor *TensorProto `protobuf:"bytes,2,opt,name=tensor,proto3,oneof"`
}

type ResultsProto

type ResultsProto struct {
	Results []*ResultProto `protobuf:"bytes,1,rep,name=results,proto3" json:"results,omitempty"`
	// contains filtered or unexported fields
}

func (*ResultsProto) Descriptor deprecated

func (*ResultsProto) Descriptor() ([]byte, []int)

Deprecated: Use ResultsProto.ProtoReflect.Descriptor instead.

func (*ResultsProto) GetResults

func (x *ResultsProto) GetResults() []*ResultProto

func (*ResultsProto) ProtoMessage

func (*ResultsProto) ProtoMessage()

func (*ResultsProto) ProtoReflect

func (x *ResultsProto) ProtoReflect() protoreflect.Message

func (*ResultsProto) Reset

func (x *ResultsProto) Reset()

func (*ResultsProto) String

func (x *ResultsProto) String() string

type ScalarProto

type ScalarProto struct {

	// Types that are assignable to Value:
	//
	//	*ScalarProto_I32
	//	*ScalarProto_I64
	Value isScalarProto_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*ScalarProto) Descriptor deprecated

func (*ScalarProto) Descriptor() ([]byte, []int)

Deprecated: Use ScalarProto.ProtoReflect.Descriptor instead.

func (*ScalarProto) GetI32

func (x *ScalarProto) GetI32() int32

func (*ScalarProto) GetI64

func (x *ScalarProto) GetI64() int64

func (*ScalarProto) GetValue

func (m *ScalarProto) GetValue() isScalarProto_Value

func (*ScalarProto) ProtoMessage

func (*ScalarProto) ProtoMessage()

func (*ScalarProto) ProtoReflect

func (x *ScalarProto) ProtoReflect() protoreflect.Message

func (*ScalarProto) Reset

func (x *ScalarProto) Reset()

func (*ScalarProto) String

func (x *ScalarProto) String() string

type ScalarProto_I32

type ScalarProto_I32 struct {
	I32 int32 `protobuf:"varint,1,opt,name=i32,proto3,oneof"`
}

type ScalarProto_I64

type ScalarProto_I64 struct {
	I64 int64 `protobuf:"varint,2,opt,name=i64,proto3,oneof"`
}

type TensorProto

type TensorProto struct {
	Dtype    data.PrimitiveType `protobuf:"varint,1,opt,name=dtype,proto3,enum=xla.PrimitiveType" json:"dtype,omitempty"`
	Offset   int64              `protobuf:"varint,2,opt,name=offset,proto3" json:"offset,omitempty"`
	Sizes    []int64            `protobuf:"varint,3,rep,packed,name=sizes,proto3" json:"sizes,omitempty"`
	Strides  []int64            `protobuf:"varint,4,rep,packed,name=strides,proto3" json:"strides,omitempty"`
	Inout    bool               `protobuf:"varint,5,opt,name=inout,proto3" json:"inout,omitempty"`
	Contents []byte             `protobuf:"bytes,6,opt,name=contents,proto3" json:"contents,omitempty"`
	// contains filtered or unexported fields
}

func (*TensorProto) Descriptor deprecated

func (*TensorProto) Descriptor() ([]byte, []int)

Deprecated: Use TensorProto.ProtoReflect.Descriptor instead.

func (*TensorProto) GetContents

func (x *TensorProto) GetContents() []byte

func (*TensorProto) GetDtype

func (x *TensorProto) GetDtype() data.PrimitiveType

func (*TensorProto) GetInout

func (x *TensorProto) GetInout() bool

func (*TensorProto) GetOffset

func (x *TensorProto) GetOffset() int64

func (*TensorProto) GetSizes

func (x *TensorProto) GetSizes() []int64

func (*TensorProto) GetStrides

func (x *TensorProto) GetStrides() []int64

func (*TensorProto) ProtoMessage

func (*TensorProto) ProtoMessage()

func (*TensorProto) ProtoReflect

func (x *TensorProto) ProtoReflect() protoreflect.Message

func (*TensorProto) Reset

func (x *TensorProto) Reset()

func (*TensorProto) String

func (x *TensorProto) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL