Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 116 for myproduct (0.14 sec)

  1. gradle/wrapper/gradle-wrapper.jar

    herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 08:44:14 UTC 2024
    - 42.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        auto tiled_sharding_mismatched = [&](int tiled_input_size) {
          return cluster_func.emitError(
              llvm::formatv("incorrect {0}-th tiled input sharding received. "
                            "Product of tile sharding splits({1}) must be equal to "
                            "number of logical devices : {2}",
                            input_index, tiled_input_size, num_cores_per_replica));
        };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  3. src/math/big/int.go

    			z.abs = z.abs.sub(x.abs, y.abs)
    		} else {
    			neg = !neg
    			z.abs = z.abs.sub(y.abs, x.abs)
    		}
    	}
    	z.neg = len(z.abs) > 0 && neg // 0 has no sign
    	return z
    }
    
    // Mul sets z to the product x*y and returns z.
    func (z *Int) Mul(x, y *Int) *Int {
    	// x * y == x * y
    	// x * (-y) == -(x * y)
    	// (-x) * y == -(x * y)
    	// (-x) * (-y) == x * y
    	if x == y {
    		z.abs = z.abs.sqr(x.abs)
    		z.neg = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ArrayTable.java

     * contains a mapping for every row key / column pair. The value corresponding to a given row and
     * column is null unless another value is provided.
     *
     * <p>The table's size is constant: the product of the number of supplied row keys and the number of
     * supplied column keys. The {@code remove} and {@code clear} methods are not supported by the table
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ArrayTable.java

     * contains a mapping for every row key / column pair. The value corresponding to a given row and
     * column is null unless another value is provided.
     *
     * <p>The table's size is constant: the product of the number of supplied row keys and the number of
     * supplied column keys. The {@code remove} and {@code clear} methods are not supported by the table
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. LICENSE

          with Licensor regarding such Contributions.
    
       6. Trademarks. This License does not grant permission to use the trade
          names, trademarks, service marks, or product names of the Licensor,
          except as required for reasonable and customary use in describing the
          origin of the Work and reproducing the content of the NOTICE file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  7. docs/fa/docs/index.md

    ltr;"> [...] I'm using <strong>FastAPI</strong> a ton these days. [...] I'm actually planning to use it for all of my team's <strong>ML services at Microsoft</strong>. Some of them are getting integrated into the core <strong>Windows</strong> product and some <strong>Office</strong> products."</div>
    
    <div style="text-align: right; margin-right: 10%;">Kabir Khan - <strong>Microsoft</strong> <a href="https://github.com/tiangolo/fastapi/pull/26" target="_blank"><small>(ref)</small></a></div>...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    In signal processing, cross-correlation is a measure of similarity of
    two waveforms as a function of a time-lag applied to one of them. This
    is also known as a sliding dot product or sliding inner-product.
    
    Our Conv3D implements a form of cross-correlation.
      }];
    
      let arguments = (ins
        Arg<TF_FloatTensor, [{Shape `[batch, in_depth, in_height, in_width, in_channels]`.}]>:$input,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

      inputs:[int];
    
      // Indices of the tensors that are outputs out of this subgraph. Note this is
      // the list of output tensors that are considered the product of the
      // subgraph's inference.
      outputs:[int];
    
      // All operators, in execution order.
      operators:[Operator];
    
      // Name of this subgraph (used for debugging).
      name:string;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  10. src/math/big/float.go

    		case xm > ym:
    			return +1
    		}
    	}
    
    	return 0
    }
    
    // Handling of sign bit as defined by IEEE 754-2008, section 6.3:
    //
    // When neither the inputs nor result are NaN, the sign of a product or
    // quotient is the exclusive OR of the operands’ signs; the sign of a sum,
    // or of a difference x−y regarded as a sum x+(−y), differs from at most
    // one of the addends’ signs; and the sign of the result of conversions,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
Back to top