Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 198 for composite_ (0.14 sec)

  1. tensorflow/cc/framework/scope.h

      std::unique_ptr<Impl> impl_;
      explicit Scope(Impl*);
    };
    
    /// A helper struct to hold the scopes that would be used by a function
    /// constructing a composite op.
    struct CompositeOpScopes {
      /// Scope to be used for creating the local ops (primitive or other composite
      /// ops).
      Scope child;
      /// Scope to be used for creating the last op.
      Scope last;
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

        }
    
        // This test mostly reproduces `org.gradle.plugins.ide.tooling.r31.PersistentCompositeDependencySubstitutionCrossVersionSpec.ensures unique name for all Idea modules in composite`
        def "ensures unique name for all Idea modules in composite"() {
            singleProjectBuildInRootDir("buildA") {
                buildFile << """
                    apply plugin: 'java'
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

            return failure();
          }
    
          // Quantization parameters can be propagated only for same-scale ops and
          // same-scale ops are quantized only when they are connected to quantized
          // composite functions.
          if (!GetStableHloQuantConstraints(op_with_region)
                   ->has_same_scale_requirement ||
              !IsConnectedWithQuantizedCompsiteFunction(op_with_region)) {
            return failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/passes.td

      let constructor = "CreatePostQuantizeRemoveQDQPass()";
    }
    
    def PrepareCompositeFunctionsPass : Pass<"tfl-prepare-composite-funcs-tf", "mlir::ModuleOp"> {
      let summary = "Prepares composite functions in Tensorflow dialect of MLIR.";
      let constructor = "CreatePrepareCompositeFunctionsPass()";
      let dependentDialects = ["TFL::TensorFlowLiteDialect"];
      let description = [{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RepositoriesDeclaredInSettingsIntegrationTest.groovy

         * we start with the plugins block, but the said plugin is provided by the composite.
         *
         * It actually works for the buildSrc application, but not for the main build
         */
        @ToBeImplemented
        def "can use a composite build to write a settings plugin which will apply to both the main build and buildSrc"() {
            withSettingsPlugin()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:56:27 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  6. src/go/types/index.go

    			check.errorf(x, code, invalidArg+"%s %s overflows int", what, x)
    			return false
    		}
    	}
    
    	return true
    }
    
    // indexedElts checks the elements (elts) of an array or slice composite literal
    // against the literal's element type (typ), and the element indices against
    // the literal length if known (length >= 0). It returns the length of the
    // literal (maximum index value + 1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/internal/types/testdata/check/issues0.go

    	_ = !ok
    	_ = x
    }
    
    func issue8799b(x int, ok bool) {
    	x, ok = missing /* ERROR "undefined" */ ()
    	_ = !ok
    	_ = x
    }
    
    func issue9182() {
    	type Point C /* ERROR "undefined" */ .Point
    	// no error for composite literal based on unknown type
    	_ = Point{x: 1, y: 2}
    }
    
    func f0() (a []int)         { return }
    func f1() (a []int, b int)  { return }
    func f2() (a, b []int)      { return }
    
    func append_([]int, ...int) {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildPluginDevelopmentIntegrationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.integtests.composite
    
    
    import org.gradle.integtests.fixtures.build.BuildTestFile
    import org.gradle.integtests.fixtures.executer.GradleContextualExecuter
    import org.gradle.integtests.fixtures.timeout.IntegrationTestTimeout
    import spock.lang.Issue
    
    /**
     * Tests for plugin development scenarios within a composite build.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/index.go

    			check.errorf(x, code, invalidArg+"%s %s overflows int", what, x)
    			return false
    		}
    	}
    
    	return true
    }
    
    // indexedElts checks the elements (elts) of an array or slice composite literal
    // against the literal's element type (typ), and the element indices against
    // the literal length if known (length >= 0). It returns the length of the
    // literal (maximum index value + 1).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 16:16:58 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

        Gradle getGradle();
    
        /**
         * Includes a build at the specified path to the composite build.
         * @param rootProject The path to the root project directory for the build.
         *
         * @since 3.1
         */
        void includeBuild(Object rootProject);
    
        /**
         * Includes a build at the specified path to the composite build, with the supplied configuration.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top