Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 847 for dissect (0.12 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    // changes provokes a failure, a program needs to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package bisect can be used by compilers and other programs
    // to serve as a target for the bisect debugging tool.
    // See [golang.org/x/tools/cmd/bisect] for details about using the tool.
    //
    // To be a bisect target, allowing bisect to help determine which of a set of independent
    // changes provokes a failure, a program needs to:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/breakup-islands.cc

      StringRef getArgument() const final { return "tf-executor-break-up-islands"; }
    
      StringRef getDescription() const final {
        return "Transform from TF control dialect to TF executor dialect.";
      }
    
      void runOnFunction(func::FuncOp func,
                         const TF::SideEffectAnalysis::Info& side_effect_analysis);
    
      void BreakUpIsland(tf_executor::IslandOp island_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 11 20:52:36 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/loadpe/ldpe.go

    }
    
    func issect(s *pe.COFFSymbol) bool {
    	return s.StorageClass == IMAGE_SYM_CLASS_STATIC && s.Type == 0 && s.Name[0] == '.'
    }
    
    func (state *peLoaderState) readpesym(pesym *pe.COFFSymbol) (*loader.SymbolBuilder, loader.Sym, error) {
    	symname, err := pesym.FullName(state.f.StringTable)
    	if err != nil {
    		return nil, 0, err
    	}
    	var name string
    	if issect(pesym) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/passes.h

    // Creates an instance of the TensorFlow Lite dialect PrepareTF pass.
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareTFPass(
        bool unfold_batch_matmul, bool allow_bf16_and_f16_type_legalization,
        bool use_fake_quant_num_bits = false);
    std::unique_ptr<OperationPass<func::FuncOp>> CreatePrepareTFPass();
    
    // Creates an instance of the TensorFlow Lite dialect LowerStaticTensorList
    // pass.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 07 21:29:34 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/derived/DerivedVariantsResolutionIntegrationTest.groovy

            direct = mavenHttpRepo.module("test", "direct", "1.0")
            direct.dependsOn(transitive)
        }
    
        // region With Gradle Module Metadata
        def "direct has GMM and no sources or javadoc jars"() {
            transitive.withModuleMetadata()
            transitive.publish()
            direct.withModuleMetadata()
            direct.publish()
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tfr/ir/tfr_ops.td

    //===----------------------------------------------------------------------===//
    // Dialect
    //===----------------------------------------------------------------------===//
    
    def TFR_Dialect : Dialect {
      let name = "tfr";
    
      let description = [{
        The TensorFlow Composition dialect.
      }];
    
      let cppNamespace = "::mlir::TFR";
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 10:54:29 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/ir/tfr_ops.cc

    #include "llvm/ADT/Twine.h"
    #include "llvm/Support/Casting.h"
    #include "llvm/Support/raw_ostream.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/Dialect/Quant/QuantTypes.h"  // from @llvm-project
    #include "mlir/Dialect/Shape/IR/Shape.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 21 16:55:41 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    }
                """
    
                file("direct/build.gradle") << """
                    plugins {
                        id 'java'
                    }
    
                    dependencies {
                        implementation project(":transitive")
                    }
                """
                file("direct/src/main/java/direct/Multiplier.java").java """
                    package direct;
    
                    public class Multiplier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.cc

    namespace TF {
    
    //===----------------------------------------------------------------------===//
    // TF Dialect Interfaces
    //===----------------------------------------------------------------------===//
    
    namespace {
    
    struct TFConstantFoldInterface : public DialectFoldInterface {
      TFConstantFoldInterface(Dialect *dialect) : DialectFoldInterface(dialect) {}
      LogicalResult fold(Operation *op, ArrayRef<Attribute> operands,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 14.6K bytes
    - Viewed (0)
Back to top