Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 324 for outlining (0.19 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_device_ops.td

      let summary = [{
    The `tf_device.cluster_func` launches a function containing the body of a
    cluster.
      }];
    
      let description = [{
    This op is used for outlining a cluster.
      }];
    
      let arguments = (ins
        FlatSymbolRefAttr:$func,
        Variadic<AnyType>:$args
      );
    
      let results = (outs
        Variadic<AnyType>:$results
      );
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 23:53:20 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        TPU-annotated operations and intended to preserve backward compatibility with
        TFv1.
      }];
    }
    
    def TPUBridgeExecutorIslandOutliningPass : Pass<"tf-executor-tpu-v1-island-outlining", "ModuleOp"> {
      let summary = "Outline TPU clusters from island into a nested module, so it can "
               "be processed like a V2 module, intended for V1 compatibility mode";
    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. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

        tf_device.return %4 : tensor<?xi32>
      }) {device = "tpu0"} : () -> tensor<?xi32>
      %2 = "tf.D"(%1) : (tensor<?xi32>) -> tensor<?xi32>
      return %2 : tensor<?xi32>
    ```
    ### `-tf-device-cluster-outlining`
    
    _Outlines regions of tf_device.cluster operations_
    
    This pass outlines the body of a `tf_device.cluster` into a function and
    replaces the `tf_device.cluster` op with an equivalent `tf_device.cluster_func`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

      for (func::FuncOp func_op : getOperation().getOps<func::FuncOp>()) {
        if (functions_to_skip.contains(func_op)) {
          OpBuilder builder(func_op);
          // Mark this function as being skipped in island outlining.
          func_op->setAttr(mlir::TF::kSkipIslandOutlining,
                           builder.getBoolAttr(true));
          continue;
        }
    
        func_op.walk([&](GraphOp graph) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    We will start by outlining the things you should consider when migrating a build from Ant to Gradle and offer some general guidelines on how to proceed.
    
    [[migant:general_guidelines]]
    == General guidelines
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  6. src/time/time.go

    // that the leading digit is non-zero. The zero duration formats as 0s.
    func (d Duration) String() string {
    	// This is inlinable to take advantage of "function outlining".
    	// Thus, the caller can decide whether a string must be heap allocated.
    	var arr [32]byte
    	n := d.format(&arr)
    	return string(arr[n:])
    }
    
    // format formats the representation of d into the end of buf and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/reflect/value.go

    //	for iter.Next() {
    //		k := iter.Key()
    //		v := iter.Value()
    //		...
    //	}
    func (v Value) MapRange() *MapIter {
    	// This is inlinable to take advantage of "function outlining".
    	// The allocation of MapIter can be stack allocated if the caller
    	// does not allow it to escape.
    	// See https://blog.filippo.io/efficient-go-apis-with-the-inliner/
    	if v.kind() != Map {
    		v.panicNotMap()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_buildvcs.txt

    stderr '^go: missing Git command\. See https://golang\.org/s/gogetcmd\nerror obtaining VCS status: .*\n\tUse -buildvcs=false to disable VCS stamping.'
    
    # Adding the -test flag should be strictly additive — it should not suppress the error.
    ! go list -buildvcs=true -test .
    stderr '^go: missing Git command\. See https://golang\.org/s/gogetcmd\nerror obtaining VCS status: .*\n\tUse -buildvcs=false to disable VCS stamping.'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/version_buildvcs_nested.txt

    cp ../../main.go main.go
    ! go build
    stderr '^error obtaining VCS status: main module is in repository ".*root" but current directory is in repository ".*gitsub"$'
    go build -buildvcs=false
    go mod init example.com/root/gitsub
    exec git commit --allow-empty -m empty # status commands fail without this
    go build
    rm go.mod
    cd ..
    ! go build ./gitsub
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:18:32 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. licenses/github.com/shopspring/decimal/LICENSE

    The MIT License (MIT)
    
    Copyright (c) 2015 Spring, Inc.
    
    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 06 22:59:30 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top