Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 205 for composite_ (0.16 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. src/go/printer/testdata/declarations.input

    			"cap": nil,
    			"len": nil,
    			"new": nil,
    			"make": nil,
    			"panic": nil,
    			"panicln": nil,
    			"print": nil,
    			"println": nil,
    		},
    	}
    }
    
    
    // alignment of map composite entries
    var _ = map[int]int{
    	// small key sizes: always align even if size ratios are large
    	a: a,
    	abcdefghabcdefgh: a,
    	ab: a,
    	abc: a,
    	abcdefgabcdefg: a,
    	abcd: a,
    	abcde: a,
    	abcdef: a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFileCollectionFactoryTest.groovy

        }
    
        def 'constructs empty tree when composite tree created with empty list'() {
            def tree = factory.treeOf([])
    
            expect:
            emptyTree(tree)
        }
    
        def 'returns source file tree when composite tree created with single entry'() {
            def source = Stub(FileTreeInternal)
            def tree = factory.treeOf([source])
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. src/go/printer/testdata/declarations.golden

    			"cap":		nil,
    			"len":		nil,
    			"new":		nil,
    			"make":		nil,
    			"panic":	nil,
    			"panicln":	nil,
    			"print":	nil,
    			"println":	nil,
    		},
    	}
    }
    
    // alignment of map composite entries
    var _ = map[int]int{
    	// small key sizes: always align even if size ratios are large
    	a:			a,
    	abcdefghabcdefgh:	a,
    	ab:			a,
    	abc:			a,
    	abcdefgabcdefg:		a,
    	abcd:			a,
    	abcde:			a,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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. 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)
Back to top