Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 260 for _lifted (0.16 sec)

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

        return func;
      func::FuncOp cloned = func.clone();
      cloned.setPrivate();
      cloned.setName(
          StringAttr::get(func.getContext(), func.getName().str() + "_lifted"));
      SymbolTable(module).insert(cloned);
      return cloned;
    }
    
    // Eliminates unused results for If/Case operations. Also patches up the
    // branch functions to (a) drop the ununsed return values, and (b) as a result
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/lift_hashtable_ops_as_args.mlir

        return
      }
    
    // Check that HashTable op in the initilizer is not lifted.
    // CHECK: func.func @init_all_tables()
    // CHECK: %[[OUT_0:.*]] = "tf.HashTableV2"()
    // CHECK: "tf.LookupTableImportV2"(%[[OUT_0]]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 15 05:41:44 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  3. src/internal/types/testdata/check/shifts.go

    	var s uint
    	_ = 1.0 /* ERROR "shifted operand 1.0 (type float64) must be integer" */ <<s == 1
    	_ = 1.0 /* ERROR "shifted operand 1.0 (type float64) must be integer" */ <<s == 1.0
    	_ = 1 /* ERROR "shifted operand 1 (type float64) must be integer" */ <<s == 1.0
    	_ = 1 /* ERROR "shifted operand 1 (type float64) must be integer" */ <<s + 1.0 == 1
    	_ = 1 /* ERROR "shifted operand 1 (type float64) must be integer" */ <<s + 1.1 == 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            outputContains "Listed [3, 2, 1] for org:testA"
            outputContains "Supplying metadata for module org:testA:3"
            outputContains "Supplying metadata for module org:testA:2"
            outputContains "Supplying metadata for module org:testA:1"
            outputContains "Listing versions for module testB"
            outputContains "Listed [2, 1] for org:testB"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

      // here will be quantized with best effort.
      map<int32, QuantizedType> input_quantized_types = 1;
    }
    
    // Represents a matching method that matches quantizable units by lifted
    // functions' names.
    message FunctionNameMatcherSpec {
      // Regular expression to match lifted functions' names. Underlying regex
      // engine uses re2, which accepts a subset of PCRE. See
      // https://github.com/google/re2/wiki/Syntax for details.
      string regex = 1;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                'org:testA:3' {
                    expectResolve()
                }
            }
    
            then:
            succeeds 'checkDeps'
        }
    
        void "falls back to repository listing when no version is listed"() {
            withLister([:])
            given:
            repository {
                'org:testA:1'()
                'org:testA:2'()
                'org:testA:3'()
            }
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionLister.java

            for (ResourcePattern pattern : filteredPatterns) {
                visit(pattern, versionListPatterns, collector, result);
            }
            if (!collector.isEmpty()) {
                result.listed(collector);
            }
        }
    
        private List<ResourcePattern> filterDuplicates(List<ResourcePattern> patterns) {
            if (patterns.size() <= 1) {
                return patterns;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/help/helpdoc.go

    		be those functions exported using a cgo //export comment.
    		Requires exactly one main package to be listed.
    
    	-buildmode=default
    		Listed main packages are built into executables and listed
    		non-main packages are built into .a files (the default
    		behavior).
    
    	-buildmode=shared
    		Combine all the listed non-main packages into a single shared
    		library that will be used when building with the -linkshared
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

          mlir::tf_executor::CreateTFExecutorGraphPruningPass(ops_to_preserve));
      // It is assumed at this stage there are no V1 control flow ops as Graph
      // functionalization is ran before import. Ops can be lifted out of
      // tf_executor dialect islands/graphs.
      pm.addNestedPass<FuncOp>(
          mlir::CreateExecutorDialectToFunctionalConversionPass());
      // Guarantee all functions have one use, which enables more exact shape
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_device_passes.td

               "invariants. In the case of this pass, that means manually propagating "
               "controls to lifted parallel execute regions to the graph fetch to "
               "ensure the ops execute, as well as determining whether or not the "
               "islands created by this pass should be split after the replicated "
               "ops have been lifted.">
      ];
    
      let constructor = "TFDevice::CreateLaunchToDeviceAttributePass()";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top