Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,268 for _after (0.24 sec)

  1. tensorflow/compiler/mlir/tf2xla/api/v1/cluster_tf.cc

        ::tensorflow::DumpMlirOpToFile(DEBUG_DATA_DUMPER()->GetDumpFilename(
                                           module_name.str(), kDebugGroupMain,
                                           "_" + dump_prefix.str() + "_after"),
                                       module, llvm::StringRef(), &bridge);
      }
    
      return diag_handler.ConsumeStatus();
    }
    
    }  // namespace
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 22:25:18 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/debug/debug.cc

        }
      }
    
      void runAfterPass(mlir::Pass* pass, mlir::Operation* op) override {
        if (RE2::FullMatch(pass->getName(), *dump_pass_re_)) {
          Dump(absl::StrCat(absl::string_view(pass->getName()), "_after"), op,
               absl::StrCat(absl::Hex(pass_counter_++, absl::kZeroPad8)));
        }
      }
    
     private:
      // Dumps the given op. `name` is used as part of the filename to help
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 10 02:44:52 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/mlir_graph_optimization_pass.cc

          ::tensorflow::DumpMlirOpToFile(DEBUG_DATA_DUMPER()->GetDumpFilename(
                                             function_name, kDebugGroupMain,
                                             llvm::formatv("mlir_{0}_after", name)),
                                         *module_ref, llvm::StringRef(), nullptr);
        }
      }
    
      if (!is_module_updated) {
        VLOG(2) << "MLIR module is not updated. Using the original graph. "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/clustering_bridge_passes.cc

      // its outside. This may cause the op to fail to verify after the cluster is
      // outlined, as the constant operand is replaced by an argument.
      pm.addPass(mlir::createInlinerPass({}, NoCanonicalization));
      // Lift resource operations out of device computation. This step needs to be
      // done after inlining.
      pm.addPass(mlir::TFDevice::CreateResourceOpLiftingPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 16:09:14 UTC 2024
    - 11.2K bytes
    - Viewed (1)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/controlling_task_execution.adoc

    ----
    ====
    
    The "should run after" ordering rule is similar but less strict, as it will be ignored in two situations:
    
    1. If using that rule introduces an ordering cycle.
    2. When using parallel execution and all task dependencies have been satisfied apart from the "should run after" task, then this task will be run regardless of whether or not its "should run after" dependencies have been run.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/encoding/json/scanner.go

    		}
    		return s.error(c, "after array element")
    	}
    	return s.error(c, "")
    }
    
    // stateEndTop is the state after finishing the top-level value,
    // such as after reading `{}` or `[1,2,3]`.
    // Only space characters should be seen now.
    func stateEndTop(s *scanner, c byte) int {
    	if !isSpace(c) {
    		// Complain about non-space byte on next call.
    		s.error(c, "after top-level value")
    	}
    	return scanEnd
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  7. pkg/registry/core/service/storage/alloc.go

    	if txn, err := al.txnUpdateNodePorts(after, before, dryRun); err != nil {
    		return nil, err
    	} else {
    		result = append(result, txn)
    	}
    
    	success = true
    	return result, nil
    }
    
    func (al *Allocators) txnUpdateClusterIPs(after After, before Before, dryRun bool) (transaction, error) {
    	service := after.Service
    
    	allocated, released, err := al.updateClusterIPs(after, before, dryRun)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 37.3K bytes
    - Viewed (0)
  8. cmd/metacache-entries.go

    			fiv, err := entry.fileInfoVersions(bucket)
    			if err != nil {
    				continue
    			}
    
    			fiVersions := fiv.Versions
    			if afterV != "" {
    				vidMarkerIdx := fiv.findVersionIndex(afterV)
    				if vidMarkerIdx >= 0 {
    					fiVersions = fiVersions[vidMarkerIdx+1:]
    				}
    				afterV = ""
    			}
    
    			for _, version := range fiVersions {
    				versioned := vcfg != nil && vcfg.Versioned(entry.name)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/custom-response.md

    ```
    
    1. This is the generator function. It's a "generator function" because it contains `yield` statements inside.
    2. By using a `with` block, we make sure that the file-like object is closed after the generator function is done. So, after it finishes sending the response.
    3. This `yield from` tells the function to iterate over that thing named `file_like`. And then, for each part iterated, yield that part as coming from this generator function.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    $ gradle clean build
    ----
    
    However, the intention implied in the command line order is that `clean` should run first and then `build`. It would be incorrect to execute `clean` _after_ `build`, even if doing so would cause the build to execute faster since `clean` would remove what `build` created.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top