Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,302 for nack (0.32 sec)

  1. tensorflow/compiler/jit/device_util.cc

      }
    
      int new_id = names_.size();
      names_.push_back(string(name));
      id_to_device_type_.push_back(std::make_unique<DeviceType>(""));
      DeviceType* device_type = id_to_device_type_.back().get();
      TF_RETURN_IF_ERROR(DeviceNameToDeviceType(names_.back(), device_type));
    
      is_cpu_.push_back(device_type->type_string() == DEVICE_CPU);
      is_gpu_.push_back(device_type->type_string() == DEVICE_GPU);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/insert_calibration_statistics_saver.cc

      if (statistics_outputs.empty()) return failure();
    
      OpBuilder builder(&ctx);
      // Set the insertion point right before the return op.
      builder.setInsertionPoint(&region.back().back());
    
      StringAttr output_file_path_attr = builder.getStringAttr(output_file_path);
      ArrayAttr ids_attr = builder.getStrArrayAttr(ids);
      ArrayAttr calibration_methods_attr =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	liveLookupCache *lru.Cache
    	group           singleflight.Group
    	liveTTL         time.Duration
    	// updatedQuotas holds a cache of quotas that we've updated.  This is used to pull the "really latest" during back to
    	// back quota evaluations that touch the same quota doc.  This only works because we can compare etcd resourceVersions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/fake_quant_utils.h

    //               tfl.quantize
    //                   |
    //              tfl.dequantize
    //                   |
    //
    //
    // Warns if the (most likely unwanted, currently not quite correctly handled)
    // case of back-to-back tf.FakeQuant occurs
    //
    //             tf.FakeQuant*
    //                   |
    //             tf.FakeQuant*
    //
    template <typename TFFakeQuantOp, bool PerAxis, class FetchMinMax>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/utils/typeUtils.kt

            // If the resulting type is an error type, the abbreviated type couldn't be resolved. As per the contract of
            // `KaType.abbreviatedType`, we should return `null` in such cases. The user can then fall back to the expanded type.
            typeBuilder.buildKtType(abbreviatedConeType) as? KaUsualClassType
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. docs/de/docs/advanced/response-change-status-code.md

    **FastAPI** verwendet diese *vorübergehende* Response, um den Statuscode (auch Cookies und Header) zu extrahieren und fügt diese in die endgültige Response ein, die den von Ihnen zurückgegebenen Wert enthält, gefiltert nach einem beliebigen `response_model`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:58 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/Parser.kt

                }
    
                else -> {
                    codeStatements.add(line)
                    isAfterImportLine = false
                }
            } // TODO: ugly, brittle hack...
        }
    
        if (packageStatements.size > 2) error("Multiple package statements")
    
        fun addNewlineIfNotBlank(it: String) = when {
            it.isNotBlank() -> it + "\n"
            else -> it
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

            | ((source[offset + 3] & 0xFF) << 24);
      }
    
      /**
       * Indicates that the loading of Unsafe was successful and the load and store operations will be
       * very efficient. May be useful for calling code to fall back on an alternative implementation
       * that is slower than Unsafe.get/store but faster than the pure-Java mask-and-shift.
       */
      static boolean usingUnsafe() {
        return (byteArray instanceof UnsafeByteArray);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/cluster_ops_by_policy.cc

        return a->isBeforeInBlock(b);
      });
    
      // Create tf_device::ClusterOp before the last operation in the block that
      // is a part of a match set.
      auto back = cluster.operations.back();
      auto loc = back->getLoc();
      OpBuilder builder(back);
    
      auto cluster_op =
          builder.create<tf_device::ClusterOp>(loc, return_types, policy);
    
      // Create block in cluster_op's region and move 'cluster.operations' into
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. cmd/bucket-listobjects-handlers.go

    		return
    	}
    
    	listObjectVersions := objectAPI.ListObjectVersions
    
    	// Initiate a list object versions operation based on the input params.
    	// On success would return back ListObjectsInfo object to be
    	// marshaled into S3 compatible XML header.
    	listObjectVersionsInfo, err := listObjectVersions(ctx, bucket, prefix, marker, versionIDMarker, delimiter, maxkeys)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
Back to top