Home
last modified time | relevance | path

Searched defs:fuse (Results 1 – 25 of 37) sorted by relevance

12

/external/pytorch/torch/csrc/jit/runtime/static/
Dpasses.cpp80 SubgraphRewriter fuse; in ConcatAddMulReplaceNaNClip() local
107 SubgraphRewriter fuse; in CastedBatchOneHotLengths() local
139 SubgraphRewriter fuse; in ConcatBatchMatMulBatchGather() local
187 SubgraphRewriter fuse; in ClipRangesGatherRangesLengthsToOffsets() local
204 SubgraphRewriter fuse; in ClipRangesGather() local
222 SubgraphRewriter fuse; in PrecomputeMultiplierShiftForSigridHash() local
239 SubgraphRewriter fuse; in ClipRangesToGatherToOffsets() local
267 SubgraphRewriter fuse; in ToLengthsToOffsets() local
296 SubgraphRewriter fuse; in ClipRangesGatherSigridHash() local
314 SubgraphRewriter fuse; in ClipRangesGatherRangesSigridHash() local
[all …]
/external/pytorch/torch/_inductor/fx_passes/
Dgroup_batch_fusion.py111 def fuse(self, graph, subset): member in GroupBatchFusionBase
218 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in PostGradBatchLinearFusion
344 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in GroupLinearFusion
442 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in BatchPointwiseMathOpsPostGradFusion
505 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in BatchLinearLHSFusion
649 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in PreGradBatchLinearFusion
773 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in BatchLayernormFusion
935 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in BatchPointwiseOpsPreGradFusion
1012 def fuse(self, graph: torch.fx.GraphModule, subset: List[torch.fx.Node]): member in BatchPointwiseOpsPostGradFusion
/external/rust/android-crates-io/crates/rayon/src/iter/
Dpanic_fuse.rs128 fuse: Fuse<'a>, field
180 fuse: Fuse<'a>, field
229 fuse: Fuse<'a>, field
291 fuse: Fuse<'a>, field
314 let fuse = &self.fuse; in consume_iter() localVariable
/external/rust/android-crates-io/crates/futures/tests/
Dfuture_fuse.rs6 fn fuse() { in fuse() function
/external/pytorch/torch/ao/quantization/fx/
Dfuse_handler.py36 def fuse( member in FuseHandler
55 def fuse( member in DefaultFuseHandler
Dfuse.py32 def fuse( function
/external/erofs-utils/
DMakefile.am7 SUBDIRS += fuse subdir
Dconfigure.ac151 AC_ARG_ENABLE(fuse, optenable
/external/ComputeLibrary/src/dynamic_fusion/sketch/gpu/
DGpuKernelComponentGraph.cpp52 GpuKernelComponentStream GpuKernelComponentGraph::fuse(const MemoryDescriptorMap &mem_map) const in fuse() function in arm_compute::experimental::dynamic_fusion::GpuKernelComponentGraph
/external/rust/android-crates-io/crates/futures-util/src/future/future/
Dmod.rs26 mod fuse; module
365 fn fuse(self) -> Fuse<Self> in fuse() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DShare.kt372 override fun fuse(context: CoroutineContext, capacity: Int, onBufferOverflow: BufferOverflow) = in asSharedFlow() method
382 override fun fuse(context: CoroutineContext, capacity: Int, onBufferOverflow: BufferOverflow) = in fuse() method
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/
DChannelFlow.kt26 public fun fuse( in <lambda>() method
69 …public override fun fuse(context: CoroutineContext, capacity: Int, onBufferOverflow: BufferOverflo… in dropChannelOperators() method in kotlinx.coroutines.flow.internal.ChannelFlow
/external/rust/crates/v4l2r/lib/src/device/queue/
Dqbuf.rs76 fuse: BufferStateFuse<B>, field
89 let fuse = BufferStateFuse::new(Arc::downgrade(buffer_info)); in new() localVariable
Ddqbuf.rs35 fuse: BufferStateFuse<P>, field
/external/ComputeLibrary/tests/validation/fixtures/dynamic_fusion/operators/
DClampFixture.h50 void setup(TensorShape shape, ClampAttributes attributes, bool fuse, DataType data_type) in setup()
/external/libfuse/lib/
Dfuse.c107 struct fuse { struct
108 struct fuse_session *se; argument
112 fuse_ino_t ctr; argument
116 struct fuse_config conf; argument
118 struct fuse_fs *fs; argument
138 fuse_ino_t nodeid; argument
172 struct fuse *fuse; member
4863 static void *fuse_prune_nodes(void *fuse) in fuse_prune_nodes()
/external/rust/android-crates-io/crates/tokio-stream/src/
Dstream_ext.rs25 mod fuse; module
539 fn fuse(self) -> Fuse<Self> in fuse() method
/external/arm-trusted-firmware/plat/imx/common/
Dimx_sip_handler.c118 uint32_t fuse; in imx_otp_handler() local
/external/coreboot/src/soc/intel/apollolake/
Dcse.c126 uint8_t fuse; in fpf_blown() local
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/lib/Dialect/thlo/IR/
Dthlo_ops.cc362 Value ConcatenateOp::fuse(Location loc, Value subset, OpBuilder &builder) { in fuse() function in mlir::thlo::ConcatenateOp
402 Value DynamicBroadcastInDimOp::fuse(Location loc, Value subset, in fuse() function in mlir::thlo::DynamicBroadcastInDimOp
/external/tensorflow/tensorflow/compiler/xla/mlir_hlo/lib/Dialect/gml_st/transforms/
Dfusion_interface_impl.cc161 Value fuse(Operation* op, Location loc, Value subset, in fuse() function
/external/sg3_utils/include/
Dfreebsd_nvme_ioctl.h51 uint16_t fuse : 2; /* fused operation */ member
/external/pytorch/torch/fx/experimental/
Doptimization.py51 def fuse(model: torch.nn.Module, inplace=False, no_trace=False) -> torch.nn.Module: function
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/
DStateFlow.kt417 override fun fuse(context: CoroutineContext, capacity: Int, onBufferOverflow: BufferOverflow) = in createSlot() method
/external/rust/android-crates-io/crates/futures/tests_disabled/
Dstream.rs161 fn fuse() { in fuse() function

12