Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 201 for respective (0.47 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          feature_dim != bias_len) {
        return op.emitOpError()
               << "requires channel dimension and feature dimension to match; "
                  "found "
               << feature_dim << " and " << bias_len << ", respectively";
      }
      return success();
    }
    
    LogicalResult BiasAddOp::UpdateDataFormat(StringRef data_format) {
      return ::mlir::TF::UpdateDataFormat(data_format, this);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    to be recompiled, so all non-Go source code for the package should be
    stored in the package directory, not in subdirectories.
    The default C and C++ compilers may be changed by the CC and CXX
    environment variables, respectively; those environment variables
    may include command line options.
    
    The cgo tool will always invoke the C compiler with the source file's
    directory in the include path; i.e. -I${SRCDIR} is always implied. This
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    === Potential breaking changes
    
    The following changes were not previously deprecated:
    
    ==== Signing API changes
    Input and output files of `Sign` tasks are now tracked via `Signature.getToSign()` and `Signature.getFile()`, respectively.
    
    ==== Collection properties default to empty collection
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  4. src/testdata/Isaac.Newton-Opticks.txt

    1/4 of an Inch as 34386 to 34385, 34384, 34383, 34382, respectively. And
    therefore, if the thickness in all these Cases be 1/4 of an Inch (as it
    is in the Glass of which the Speculum was made) the bright Light of the
    34385th Ring shall emerge where the Sine of Refraction is 1172, and that
    of the 34384th, 34383th, and 34382th Ring where the Sine is 1659, 2031,
    and 2345 respectively. And in these Angles of Refraction the Light of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.28.md

      So, if you want to just keep the existing behavior, you can register `ClusterEventWithHint` with no `QueueingHintFn` in it. 
      But, registering appropriate `QueueingHintFn` is, of course, better from a scheduling performance perspective. ([#118551](https://github.com/kubernetes/kubernetes/pull/118551), [@sanposhiho](https://github.com/sanposhiho)) [SIG Node, Scheduling, Storage and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (1)
  6. tensorflow/compiler/jit/mark_for_compilation_pass.cc

      // provided by users through jit_scope APIs, while _XlaInternalScope is
      // automatically generated by the ClusterScopingPass when auto_jit is on.  As
      // such, we respect _XlaScope only when auto_jit is off, while respecting
      // _XlaInternalScope only when auto_jit is on.
      //
      // We may want to restrict the _XlaScope behavior to require all nodes marked
      // with _XlaCompile=true to also have a _XlaScope property set (and raise an
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    //    it prints message about the condition violation, including the
    //    condition itself, plus additional message streamed into it, if any,
    //    and then it aborts the program. It aborts the program irrespective of
    //    whether it is built in the debug mode or not.
    #define GTEST_CHECK_(condition) \
        GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
        if (::testing::internal::IsTrue(condition)) \
          ; \
        else \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  8. src/go/build/build.go

    // the compiler and linker tool names, the default object file suffix,
    // and the default linker output name. As of Go 1.5, those strings
    // no longer vary by architecture; they are compile, link, .o, and a.out, respectively.
    func ArchChar(goarch string) (string, error) {
    	return "?", errors.New("architecture letter no longer used")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    def TF_Atan2Op : TF_Op<"Atan2", [Pure, ResultsBroadcastableShape, TF_SameOperandsAndResultElementTypeResolveRef]>,
                     WithBroadcastableBinOpBuilder {
      let summary = [{
    Computes arctangent of `y/x` element-wise, respecting signs of the arguments.
      }];
    
      let description = [{
    This is the angle \\( \theta \in [-\pi, \pi] \\) such that
    \\[ x = r \cos(\theta) \\]
    and
    \\[ y = r \sin(\theta) \\]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/runtime/proc.go

    	// Readers that cannot take the lock may (carefully!) use the atomic
    	// variables below.
    	allglock mutex
    	allgs    []*g
    
    	// allglen and allgptr are atomic variables that contain len(allgs) and
    	// &allgs[0] respectively. Proper ordering depends on totally-ordered
    	// loads and stores. Writes are protected by allglock.
    	//
    	// allgptr is updated before allglen. Readers should read allglen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top