Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 3,321 for Passes (0.11 sec)

  1. tensorflow/compiler/mlir/lite/transforms/dilated_conv.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    
    namespace mlir {
    namespace TFL {
    namespace {
    
    #define GEN_PASS_DEF_IDENTIFYDILATEDCONVPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    struct IdentifyDilatedConvPass
        : public impl::IdentifyDilatedConvPassBase<IdentifyDilatedConvPass> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/graph_optimization_pass.cc

    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/dump_mlir_util.h"
    #include "tensorflow/compiler/mlir/tensorflow/utils/error_util.h"
    
    namespace mlir {
    namespace TF {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 09:56:53 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/ifaceassert.go

    // license that can be found in the LICENSE file.
    
    package ifaceassert
    
    import (
    	_ "embed"
    	"go/ast"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    //go:embed doc.go
    var doc string
    
    var Analyzer = &analysis.Analyzer{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/compile.go

    			}
    			passes[i] = p
    			matchedOne = true
    		}
    	}
    	if matchedOne {
    		return ""
    	}
    	return fmt.Sprintf("Did not find a phase matching %s in -d=ssa/... debug option", phase)
    }
    
    // list of passes for the compiler
    var passes = [...]pass{
    	{name: "number lines", fn: numberLines, required: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/stablehlo/passes/convert_xla_call_module_op_to_bfloat16.cc

    #include "stablehlo/dialect/Serialization.h"  // from @stablehlo
    #include "stablehlo/dialect/StablehloOps.h"  // from @stablehlo  // IWYU pragma: keep
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h"  // IWYU pragma: keep
    #include "tensorflow/compiler/mlir/quantization/stablehlo/utils/bfloat16_type.h"
    #include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.h"
    
    namespace mlir::quant::stablehlo {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 08:32:43 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/instrumentations/save_report_test.cc

    #include "tensorflow/compiler/mlir/quantization/common/test_base.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/cc/io.h"
    #include "tensorflow/compiler/mlir/quantization/stablehlo/passes/passes.h"
    #include "tsl/platform/protobuf.h"  // IWYU pragma: keep
    #include "tsl/platform/status_matchers.h"
    
    namespace mlir::quant::stablehlo {
    namespace {
    
    using ::stablehlo::quantization::QuantizationResults;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 02:59:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/debugging/mlir_dump.cc

      // name. E.g. a PassManager could have multiple Canonicalizer passes.
      // We use this property to uniquely determine a Pass in a PassManager.
      //
      // If multiple consecutive func passes are applied to a Module. PassManager
      // will iterate over the func in the outer loop and apply the passes in the
      // inner loop. This may cause passes to run out-of-order. But the 1st runs of
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:38:57 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantize_passes.cc

    #include "mlir/Pass/PassManager.h"  // from @llvm-project
    #include "mlir/Transforms/Passes.h"  // from @llvm-project
    #include "tensorflow/compiler/mlir/quantization/tensorflow/passes/passes.h"
    #include "tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.pb.h"
    #include "tensorflow/compiler/mlir/tensorflow/transforms/passes.h"
    #include "xla/mlir_hlo/mhlo/transforms/passes.h"
    
    namespace tensorflow {
    namespace quantization {
    namespace {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/integTest/groovy/org/gradle/groovy/compile/IncrementalGroovyCompileIntegrationTest.groovy

        }
    
        @Test
        void recompilesDependentClasses() {
            executer.withTasks("classes").run();
    
            // Update interface, compile should fail
            file('src/main/groovy/IPerson.groovy').assertIsFile().copyFrom(file('NewIPerson.groovy'))
    
            ExecutionFailure failure = executer.withTasks("classes").runWithFailure();
            failure.assertHasDescription("Execution failed for task ':compileGroovy'.");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/runtime_verify.cc

    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops.h"
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h"
    
    namespace mlir {
    #include "tensorflow/compiler/mlir/lite/ir/tfl_ops_interface.h.inc"
    namespace TFL {
    namespace {
    #define GEN_PASS_DEF_RUNTIMEVERIFYPASS
    #include "tensorflow/compiler/mlir/lite/transforms/passes.h.inc"
    
    // This pass verifies that the TFL ops meet the TFL runtime constraints.
    class RuntimeVerifyPass
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Oct 07 21:08:41 UTC 2022
    - 1.9K bytes
    - Viewed (0)
Back to top