Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for fanout (0.16 sec)

  1. fastapi/routing.py

                    This is particularly useful when automatically generating clients or
                    SDKs for your API.
    
                    Read more about it in the
                    [FastAPI docs about how to Generate Clients](https://fastapi.tiangolo.com/advanced/generate-clients/#custom-generate-unique-id-function).
                    """
                ),
            ] = Default(generate_unique_id),
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

    }
    
    def TPUDynamicLayoutPass : Pass<"tf-tpu-dynamic-layout-pass", "ModuleOp"> {
      let summary = "Inserts TPU layout ops to determine layout at run time.";
      let constructor = "TFTPU::CreateTPUDynamicLayoutPass()";
      let description = [{
        A pass that allows TPU input layout to be determined after JIT compilation.
        This is done by adding run-time ops that interpret compilation result and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    			}
    		}
    		for _, pkg := range pkgs {
    			if !load.SafeArg(pkg) {
    				return nil, nil, fmt.Errorf("invalid pkg-config package name: %s", pkg)
    			}
    		}
    		var out []byte
    		out, err = sh.runOut(p.Dir, nil, b.PkgconfigCmd(), "--cflags", pcflags, "--", pkgs)
    		if err != nil {
    			desc := b.PkgconfigCmd() + " --cflags " + strings.Join(pcflags, " ") + " -- " + strings.Join(pkgs, " ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         *
         * <p>For users of the {@code -jre} flavor of Guava, the object can be any {@code
         * AutoCloseable}. For users of the {@code -android} flavor, the object must be a {@code
         * Closeable}. (For more about the flavors, see <a
         * href="https://github.com/google/guava#adding-guava-to-your-build">Adding Guava to your
         * build</a>.)
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/data.go

    			if toc := ldr.Lookup(".TOC.", i); toc != 0 {
    				ldr.SetSymValue(toc, tocAddr)
    			}
    		}
    	}
    
    	return order
    }
    
    // layout assigns file offsets and lengths to the segments in order.
    // Returns the file size containing all the segments.
    func (ctxt *Link) layout(order []*sym.Segment) uint64 {
    	var prev *sym.Segment
    	for _, seg := range order {
    		if prev == nil {
    			seg.Fileoff = uint64(HEADR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        }
    
        // Populate the trnaspose permutation params from a "canonicalized" output
        // to the real output.
        // The canonicalized layout would be batch_dims followed by sliced_dims.
        // The current layout is essentially a transpose after the canonicalized
        // layout.
        // Take the following as an example:
        // If we have the:
        // original_offset_dims like [1, 2, 4]
        // batch_dims like [0, 3]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    int64_t LogisticOp::GetArithmeticCount(Operation* op) {
      int64_t count;
      // As a very rough ballpark, the cost of evaluating a math function
      // such as tanh or logistic is about 32 multiplications, and about as
      // many additions/subtractions. (Just a power-of-two order-of-magnitude
      // from looking at actual implementations that we use in runtime/code).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      int64_t axis =
          axis_attr.getSplatValue<IntegerAttr>().getValue().getSExtValue();
      // TODO(ezhulenev): Compute axis from rank. e.g. It might be common to concat
      // on the channels dim for NCHW layout as axis=-2.
      if (axis < 0) return failure();
    
      // All concat operands must be defined by ops of the same kind (e.g. tf.Mul),
      // or some other ops that we might convert to using the same op kind above
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tpu_rewrite.mlir

    // Proto debug string:
    //  input 0
    //   type: OTHER
    //   tile_shape {
    //    element_type: F32
    //    dimensions: 2
    //    dimensions: 2
    //    layout {
    //     minor_to_major: 1
    //     minor_to_major: 0
    //     format: DENSE
    //    }
    //    is_dynamic_dimension: false
    //    is_dynamic_dimension: false
    //   }
    //   tile_assignment_dimensions: 2
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 172.9K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		v = makeMethodValue("Interface", v)
    	}
    
    	if v.kind() == Interface {
    		// Special case: return the element inside the interface.
    		// Empty interface has one layout, all interfaces with
    		// methods have a second layout.
    		if v.NumMethod() == 0 {
    			return *(*any)(v.ptr)
    		}
    		return *(*interface {
    			M()
    		})(v.ptr)
    	}
    
    	return packEface(v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top