Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 127 for SAME (0.04 sec)

  1. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          return op.emitOpError("'input' and 'output' should have the same rank.");
        }
    
        // Check if input and output shapes are same
        for (int i = 0; i < input_type.getRank(); i++) {
          if (input_type.getDimSize(i) != output_type.getDimSize(i)) {
            return op.emitOpError(
                "'input' and 'output' should have the same shape.");
          }
        }
      }
      return success();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  2. fastapi/applications.py

                    should have all the fields, including the ones that have the same value
                    as the default. This is different from `response_model_exclude_unset`
                    in that if the fields are set but contain the same default values,
                    they will be excluded from the response.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  3. fastapi/routing.py

                    should have all the fields, including the ones that have the same value
                    as the default. This is different from `response_model_exclude_unset`
                    in that if the fields are set but contain the same default values,
                    they will be excluded from the response.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    				base.Errorf("%v", p.Error)
    			}
    		}
    	}
    	base.ExitIfErrors()
    
    	// Check for duplicate loads of the same package.
    	// That should be impossible, but if it does happen then
    	// we end up trying to build the same package twice,
    	// usually in parallel overwriting the same files,
    	// which doesn't work very well.
    	seen := map[string]bool{}
    	reported := map[string]bool{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/prepare-composite-functions-tf.mlir

      func.return %0, %1, %2, %3 : tensor<f32>, tensor<f32>, tensor<f32>, tensor<f32>
    }
    
    // CHECK-LABEL: func @tflite_custom_nms(
    // CHECK-SAME:                          %[[VAL_0:.*]]: tensor<1x100x4xf32>,
    // CHECK-SAME:                          %[[VAL_1:.*]]: tensor<1x100x91xf32>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 122.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Form clusters from instructions assigned to same device";
      let constructor = "TFDevice::CreateClusterFormationPass()";
      let dependentDialects = ["tf_device::TensorFlowDeviceDialect"];
      let description = [{
        Clusters operations with the same device assignment id. For each
        cluster, creates a "tf_device.device_launch" op with a Region containing the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * server address, the canonical representation of the URL, and does not
     * compare authentication information. In essance, two
     * <code>SmbFile</code> objects that refer to
     * the same file should generate the same hashcode provided it is possible
     * to make such a determination.
     *
     * @return  A hashcode for this abstract file
     * @throws SmbException
     */
    
        public int hashCode() {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  8. pkg/proxy/nftables/proxier_test.go

    			masq:     false,
    		},
    		{
    			name:     "clusterIP with TCP, UDP, and SCTP on same port (TCP)",
    			sourceIP: "10.180.0.2",
    			protocol: v1.ProtocolTCP,
    			destIP:   "172.30.0.42",
    			destPort: 53,
    			output:   "10.180.0.1:5353, 10.180.2.1:5353",
    			masq:     false,
    		},
    		{
    			name:     "clusterIP with TCP, UDP, and SCTP on same port (TCP)",
    			sourceIP: "10.180.0.2",
    			protocol: v1.ProtocolUDP,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

    //    the op conservatively which means that different op instances need
    //    dependencies. This is realized by always returning the same string ("")
    //    in this case. In fact, we could return any string here, as long as it is
    //    the same string for all op instances without ordering tokens.
    std::optional<std::string> CollectiveReduceV2Op::GetResourceInstanceStr() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		// so v.ptr + offset is still the correct address.
    		val := add(v.ptr, offset, "same as &v[i], i < tt.len")
    		fl := v.flag&(flagIndir|flagAddr) | v.flag.ro() | flag(typ.Kind()) // bits same as overall array
    		return Value{typ, val, fl}
    
    	case Slice:
    		// Element flag same as Elem of Pointer.
    		// Addressable, indirect, possibly read-only.
    		s := (*unsafeheader.Slice)(v.ptr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top