Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 106 for Decomposes (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tensor_array_ops_decomposition.cc

                insert(call.getArgOperands()[entry.getFirst()], source, func_block);
          }
        });
      }
      return result;
    }
    
    // Contains cached information for decomposed callee functions for (stateful)
    // partitioned call ops.
    struct PartitionedCallTensorArrayOpsInfo {
      bool signature_change;
      func::FuncOp decomposed_callee;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 20:41:19 UTC 2023
    - 40.2K bytes
    - Viewed (0)
  2. src/runtime/runtime-gdb_test.go

    	if bl := blocks["print strvar"]; !strVarRe.MatchString(bl) {
    		t.Fatalf("print strvar failed: %s", bl)
    	}
    
    	// The exact format of composite values has changed over time.
    	// For issue 16338: ssa decompose phase split a slice into
    	// a collection of scalar vars holding its fields. In such cases
    	// the DWARF variable location expression should be of the
    	// form "var.field" and not just "field".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cgroup_manager_linux.go

    	Cgroup2MemoryHigh      string = "memory.high"
    	Cgroup2MaxCpuLimit     string = "max"
    	Cgroup2MaxSwapFilename string = "memory.swap.max"
    )
    
    var RootCgroupName = CgroupName([]string{})
    
    // NewCgroupName composes a new cgroup name.
    // Use RootCgroupName as base to start at the root.
    // This function does some basic check for invalid characters at the name.
    func NewCgroupName(base CgroupName, components ...string) CgroupName {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

          (*buffer_to_size)[func.getArgument(i)] = {size_arg,
                                                    arg_buffer_size_is_fixed(i)};
        }
      }
      UpdateFuncType(func);
    }
    
    // Holds information about a decomposed callee function for
    // PartitionedCall/StatefulPartitionedCall.
    struct PartitionedCallDecompositionInfo {
      bool signature_change;
      func::FuncOp decomposed_callee;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/staticinit/sched.go

    )
    
    type Entry struct {
    	Xoffset int64   // struct, array only
    	Expr    ir.Node // bytes of run-time computed expressions
    }
    
    type Plan struct {
    	E []Entry
    }
    
    // An Schedule is used to decompose assignment statements into
    // static and dynamic initialization parts. Static initializations are
    // handled by populating variables' linker symbol data, while dynamic
    // initializations are accumulated to be executed in order.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 17:16:14 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

          Create1DConstValue<int32_t>(builder, loc, {num_input_batch_dim});
      const Value num_weight_batch_dim_value =
          Create1DConstValue<int32_t>(builder, loc, {num_weight_batch_dim});
    
      // Decompose the input and weight shape into batch and matmul dimensions.
      Value input_shape = builder.create<TF::ShapeOp>(
          loc, input, /*use32Bit=*/builder.getBoolAttr(false));
      Value input_batch_dims = builder.create<TF::SliceOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go

    				if c := q.Cmp(got); c != 0 {
    					t.Errorf("%v: round trip from decimal back to quantity is not comparable: %d: %#v vs %#v", item.input, c, got, q)
    				}
    			}
    
    			// verify that we can decompose the input and get the same result by building up from the base.
    			positive, _, num, denom, suffix, err := parseQuantityString(item.input)
    			if err != nil {
    				t.Errorf("%v: unexpected error: %v", item.input, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm/asm5.go

    			rt = 0
    		}
    		if p.As == AMOVW || p.As == AMVN {
    			r = 0
    		} else if r == 0 {
    			r = rt
    		}
    		o1 |= (uint32(r)&15)<<16 | (uint32(rt)&15)<<12
    
    	case 106: /* op $I,R,R where I can be decomposed into 2 immediates */
    		c.aclass(&p.From)
    		r := int(p.Reg)
    		rt := int(p.To.Reg)
    		if r == 0 {
    			r = rt
    		}
    		x, y := immrot2a(uint32(c.instoffset))
    		var as2 obj.As
    		switch p.As {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/generic.rules

    // is pointless and its constantness is sometimes useful for subsequent optimizations.
    // See issue 56440.
    // Note there are 2 rules here, one for the pre-decomposed []T result and one for
    // the post-decomposed (*T,int,int) result. (The latter is generated after call expansion.)
    (SliceLen (SelectN [0] (StaticLECall {sym} _ newLen:(Const(64|32)) _ _ _ _))) && isSameCall(sym, "runtime.growslice") => newLen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 22:21:05 UTC 2024
    - 135.3K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/ppc64/asm9.go

    	case 63: /* rlwimi/rlwnm/rlwinm [$sh,b],s,[$mask or mb,me],a*/
    		var mb, me uint32
    		if len(p.RestArgs) == 1 { // Mask needs decomposed into mb and me.
    			var valid bool
    			// Note, optab rules ensure $mask is a 32b constant.
    			mb, me, valid = decodeMask32(uint32(p.RestArgs[0].Addr.Offset))
    			if !valid {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top