Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 106 for Decomposes (0.17 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/decompose_resource_ops.h

    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/IR/PatternMatch.h"  // from @llvm-project
    
    namespace mlir {
    namespace TF {
    
    // Populates rewrite patterns that decompose composite resource operations into
    // primitive ones like ReadVariableOp, AssignVariableOp and other computations
    // to facilitate transformations like resource op lifting.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 27 15:05:02 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfr/passes/passes.h

    // except the tf ops, inside the function.
    void populateCanonicalizationPatterns(func::FuncOp func,
                                          RewritePatternSet &patterns);
    
    // Decompose ops.
    std::unique_ptr<OperationPass<func::FuncOp>> CreateDecomposeTFOpsPass(
        std::optional<ModuleOp> tfr_module = std::nullopt);
    
    // Rewrites quantized operands and results with their storage types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 01:19:25 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Internal.java

       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
      @SuppressWarnings({
        // We use this method only for cases in which we need to decompose to primitives.
        "GoodTime-ApiWithNumericTimeUnit",
        "GoodTime-DecomposeToPrimitive",
        // We use this method only from within APIs that require a Duration.
        "Java7ApiChecker",
      })
      @IgnoreJRERequirement
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/integration/graph_decompose_pass.h

    #include "tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.h"
    #include "tsl/platform/statusor.h"
    
    namespace tensorflow {
    namespace tfr {
    
    // An optimization pass that decompose the composite ops in a module according
    // to the decomposition library. Currently the decomposition library is loaded
    // each time the pass runs. A special environment variable is set to locate the
    // decomposition library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/database/sql/driver/types.go

    	}
    	return nil, fmt.Errorf("unsupported type %T, a %s", v, rv.Kind())
    }
    
    type decimalDecompose interface {
    	// Decompose returns the internal decimal state into parts.
    	// If the provided buf has sufficient capacity, buf may be returned as the coefficient with
    	// the value set and length set as appropriate.
    	Decompose(buf []byte) (form byte, negative bool, coefficient []byte, exponent int32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/softfloat.go

    					v.Aux = f.Config.Types.UInt64
    					newInt64 = true
    				default:
    					v.Fatalf("bad float type with size %d", size)
    				}
    			}
    		}
    	}
    
    	if newInt64 && f.Config.RegSize == 4 {
    		// On 32bit arch, decompose Uint64 introduced in the switch above.
    		decomposeBuiltIn(f)
    		applyRewrite(f, rewriteBlockdec64, rewriteValuedec64, removeDeadValues)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 03 16:14:24 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/ops/gen/common/path_config.cc

                           const std::vector<string> op_names)
        : output_path(output_dir), op_names(op_names) {
      api_dirs = str_util::Split(api_dir_list, ",", str_util::SkipEmpty());
    
      // Decompose the directory components given the output/source directories.
      //
      // Be flexible; accept any path string with a "tensorflow" directory name.
      // (It's hard to construct a location-agnostic include path string using the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Internal.java

       * a duration in order to call a legacy API which requires a {@code long, TimeUnit} pair.
       */
      @SuppressWarnings({
        // We use this method only for cases in which we need to decompose to primitives.
        "GoodTime-ApiWithNumericTimeUnit",
        "GoodTime-DecomposeToPrimitive",
        // We use this method only from within APIs that require a Duration.
        "Java7ApiChecker",
      })
      @IgnoreJRERequirement
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Jan 11 14:30:06 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/kube_template_flags.go

    limitations under the License.
    */
    
    package genericclioptions
    
    import (
    	"github.com/spf13/cobra"
    
    	"k8s.io/cli-runtime/pkg/printers"
    )
    
    // KubeTemplatePrintFlags composes print flags that provide both a JSONPath and a go-template printer.
    // This is necessary if dealing with cases that require support both both printers, since both sets of flags
    // require overlapping flags.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 13 10:28:09 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  10. pkg/registry/rbac/validation/policy_compact.go

    	ResourceName      string
    }
    
    // CompactRules combines rules that contain a single APIGroup/Resource, differ only by verb, and contain no other attributes.
    // this is a fast check, and works well with the decomposed "missing rules" list from a Covers check.
    func CompactRules(rules []rbacv1.PolicyRule) ([]rbacv1.PolicyRule, error) {
    	compacted := make([]rbacv1.PolicyRule, 0, len(rules))
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 22 12:17:05 UTC 2018
    - 3.1K bytes
    - Viewed (0)
Back to top