Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 396 for racewrite (0.23 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tpu_parallel_execute_sink_resource_write.cc

          assign_var.getValueMutable().assign(
              terminator->getOperand(result.index()));
          results_to_remove.push_back(result.index());
        }
    
        rewrite |= !results_to_remove.empty();
      }
    
      if (!rewrite) return;
    
      // Remove leftover unused results (terminator operands) from moving
      // AssignVariabeOps into the parallel_execute region.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 06 04:46:18 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/cases/map.go

    		lower = (*context).copy
    	} else if !o.ignoreFinalSigma {
    		lower = finalSigma(lower)
    	}
    	return &titleCaser{
    		title:     x.title,
    		lower:     lower,
    		titleSpan: x.titleSpan,
    		rewrite:   x.rewrite,
    	}
    }
    
    func noSpan(c *context) bool {
    	c.err = transform.ErrEndOfSpan
    	return false
    }
    
    // TODO: consider a similar special case for the fast majority lower case. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/os/rawconn.go

    	runtime.KeepAlive(c.file)
    	return err
    }
    
    func (c *rawConn) Write(f func(uintptr) bool) error {
    	if err := c.file.checkValid("SyscallConn.Write"); err != nil {
    		return err
    	}
    	err := c.file.pfd.RawWrite(f)
    	runtime.KeepAlive(c.file)
    	return err
    }
    
    func newRawConn(file *File) (*rawConn, error) {
    	return &rawConn{file: file}, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 993 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/cse.go

    		}
    	}
    
    	sdom := f.Sdom()
    
    	// Compute substitutions we would like to do. We substitute v for w
    	// if v and w are in the same equivalence class and v dominates w.
    	rewrite := f.Cache.allocValueSlice(f.NumValues())
    	defer f.Cache.freeValueSlice(rewrite)
    	byDom := new(partitionByDom) // reusable partitionByDom to reduce allocs
    	for _, e := range partition {
    		byDom.a = e
    		byDom.sdom = sdom
    		sort.Sort(byDom)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 9.6K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/go/testdata/script/cgo_bad_directives.txt

    # Reject #cgo CFLAGS: -D
    cp y_cflags_dash_d.txt y.go
    ! go build x
    stderr 'invalid flag in #cgo CFLAGS: -D without argument'
    
    # Note that -I @foo is allowed because we rewrite it into -I /path/to/src/@foo
    # before the check is applied. There's no such rewrite for -D.
    
    # Reject #cgo CFLAGS: -D @foo
    cp y_cflags_dash_d_space_at_foo.txt y.go
    ! go build x
    stderr 'invalid flag in #cgo CFLAGS: -D @foo'
    
    # Reject #cgo CFLAGS -D@foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/optimize.td

              $dilations, (location $conv)),
          [(CanFuseMulAndConv2D $filter_value, $mul_value), (HasOneUse $conv)]>;
    
    // This rule does the following pattern match and rewrite:
    //
    //       input     bias                    input  value  bias  value
    //          \      /                =>       \    /        \    /
    //          BiasAdd    value                   Mul          Mul
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 22 07:31:23 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top