Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 334 for racewrite (0.39 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/idea_plugin.adoc

     * `withXml { link:{javadocPath}/org/gradle/api/XmlProvider.html[XmlProvider] arg \-> ... }`
    
    
    [[sec:partial-rewrite]]
    ==== Partial rewrite of existing content
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_lowering_patterns.td

    def IsNhwcLayoutOp: Constraint<Neg<IsNchwLayoutOp.predicate>>;
    
    // TODO(b/343278954): Move the creation of transposes to a separate prepare pass
    // to avoid creating multiple pattern-rewrite rules for the same composite op.
    def LegalizeTorchUpsampleBlinear2dComposite: Pat<
        (MHLO_CompositeOp:$old_val
        (variadic $input),
        ConstantStrAttr<StrAttr, "odml.upsample_bilinear2d">, $attrs, $_, $_),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/rewrite_tpu_embedding_ops.cc

      auto dedup_op = builder.create<XlaRecvTPUEmbeddingDeduplicationDataOp>(
          loc, output_ty, config);
    
      // Rewrite RecvTPUEmbeddingActivations op to the corresponding internal op.
      if (recv_op)
        AddOperandAndRewriteAs<XlaRecvTPUEmbeddingActivationsOp>(
            recv_op, dedup_op, recv_op->getAttrs(), &builder);
    
      // Rewrite SendTPUEmbeddingGradients op to the corresponding internal op and
      // then update the OperandSegmentSize attribute.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 22:55:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize.cc

    };
    
    // Quantization rewrite pattern using DQ as the root op.
    struct StableHloQuantization
        : public StableHloQuantizationBase<StableHloQuantization> {
      explicit StableHloQuantization(MLIRContext* ctx)
          : StableHloQuantizationBase<StableHloQuantization>(ctx) {}
    };
    
    // Quantization rewrite pattern using Q as the root op. This is for the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 07:08:19 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. .github/workflows/go-healing.yml

              sudo sysctl net.ipv6.conf.default.disable_ipv6=0
              make verify-healing
              make verify-healing-inconsistent-versions
              make verify-healing-with-root-disks
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. src/cmd/internal/buildid/buildid_test.go

    		if err != nil {
    			t.Error(err)
    			continue
    		}
    		err = Rewrite(tf, m, newID)
    		err2 := tf.Close()
    		if err != nil {
    			t.Errorf("Rewrite(%s): %v", f, err)
    			continue
    		}
    		if err2 != nil {
    			t.Fatal(err2)
    		}
    
    		id, err = ReadFile(tmp)
    		if id != newID || err != nil {
    			t.Errorf("ReadFile(%s after Rewrite) = %q, %v, want %q, nil", f, id, err, newID)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. Makefile

    	@echo "Verify healing with root drives"
    	@(env bash $(PWD)/buildscripts/verify-healing-with-root-disks.sh)
    
    verify-healing-with-rewrite: install-race ## verify healing to rewrite old xl.meta -> new xl.meta
    	@echo "Verify healing with rewrite"
    	@(env bash $(PWD)/buildscripts/rewrite-old-new.sh)
    
    verify-healing-inconsistent-versions: install-race ## verify resolving inconsistent versions
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 17:41:02 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        uniform_quantize_op = FindUserOfType<TFL::QuantizeOp>(add_op);
      } else {
        uniform_quantize_op = FindUserOfType<TFL::QuantizeOp>(op);
      }
      // StableHLO Quantizer outputs an i32 type. Rewrite to i8 type result
      // to meet TFLite op requirement.
      auto result_quantized_type = GetElementType(uniform_quantize_op->getResult(0))
                                       .cast<UniformQuantizedType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize.cc

        quantizing_ops.append(users.begin(), users.end());
    
        bool changed = false;
        // Rewrite the floating-point ops to the quantized version, by fusing
        // preceding dequantize ops and succeding quantize ops.
        for (Operation* quantizing_op : quantizing_ops) {
          // If it is requantize op, we shouldn't rewrite this op.
          if (llvm::isa<quantfork::QuantizeCastOp, quantfork::DequantizeCastOp>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 05:52:39 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/gc.go

    				}
    			} else {
    				// Non-overlay Go files are covered by the a.Package.Dir rewrite rule above.
    			}
    		}
    	}
    	if hasCgoOverlay {
    		rewrite += overlayNonGoRewrites
    	}
    	rewrite += objdir + "=>"
    
    	return rewrite
    }
    
    func asmArgs(a *Action, p *load.Package) []any {
    	// Add -I pkg/GOOS_GOARCH so #include "textflag.h" works in .s files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 15:37:44 UTC 2024
    - 23K bytes
    - Viewed (0)
Back to top