Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for tensorlist (0.22 sec)

  1. tensorflow/c/eager/tape.h

        const int64_t id = target_tensor_ids[i];
        if (output_gradients.empty() || output_gradients[i] == nullptr) {
          auto tensor_it = tensor_tape.find(id);
          if (tensor_it != tensor_tape.end() && tensor_it->second != -1) {
            auto op_it = op_tape.find(tensor_it->second);
            if (op_it == op_tape.end()) {
              return errors::Internal(
                  "Internal state of the gradient tape is invalid: "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

    # A representative sample is a map of: input_key -> input_value.
    # Ex.: {'dense_input': tf.constant([1, 2, 3])}
    # Ex.: {'x1': np.ndarray([4, 5, 6]}
    RepresentativeSample = Mapping[str, core.TensorLike]
    
    # A representative dataset is an iterable of representative samples.
    RepresentativeDataset = Iterable[RepresentativeSample]
    
    # A type representing a map from: signature key -> representative dataset.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/utils/tf_xla_mlir_translate.cc

          output << " input_index=" << xla_output_description.input_index;
        if (xla_output_description.is_constant) output << " constant";
        if (xla_output_description.is_tensor_list) output << " tensor_list";
        output << '\n';
      }
    
      for (const auto& resource_update : compilation_result.resource_updates) {
        output << "// ResourceUpdate input_index=" << resource_update.input_index
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/buildlist.go

    					mg.g.Require(m, append(reqs, vendorMod))
    				}
    				mg.g.Require(vendorMod, vendorList)
    
    			} else {
    				mainModule := MainModules.mustGetSingleMainModule()
    				mg.g.Require(mainModule, append(rs.rootModules, vendorMod))
    				mg.g.Require(vendorMod, vendorList)
    			}
    		}
    
    		rs.graph.Store(&cachedGraph{mg, nil})
    	})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/modfile.go

    		// return the full list of modules from modules.txt.
    		// We don't know what versions the vendored module actually relies on,
    		// so assume that it requires everything.
    		summary.require = vendorList
    		return summary, nil
    	}
    
    	actual := resolveReplacement(m)
    	if mustHaveSums() && actual.Version != "" {
    		key := module.Version{Path: actual.Path, Version: actual.Version + "/go.mod"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  6. RELEASE.md

    *   Others
        *   Retain parent namescope for ops added inside
            `tf.while_loop`/`tf.cond`/`tf.switch_case`.
        *   Update `tf.vectorized_map` to support vectorizing `tf.while_loop` and
            TensorList operations.
        *   `tf.custom_gradient` can now be applied to functions that accept nested
            structures of `tensors` as inputs (instead of just a list of tensors).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/init.go

    			modFiles = append(modFiles, MainModules.ModFile(m))
    			modRoots = append(modRoots, MainModules.ModRoot(m))
    		}
    		checkVendorConsistency(indexes, modFiles, modRoots)
    		rs.initVendor(vendorList)
    	}
    
    	if inWorkspaceMode() {
    		// We don't need to update the mod file so return early.
    		requirements = rs
    		return rs, nil
    	}
    
    	mainModule := MainModules.mustGetSingleMainModule()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
Back to top