Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for GetOutputMemoryTypes (0.2 sec)

  1. tensorflow/compiler/jit/build_xla_ops_pass.cc

          xla_run_args.push_back(o);
        }
        input_idx++;
      }
      absl::c_copy(cluster_info.resource_inputs, std::back_inserter(xla_run_args));
      return xla_run_args;
    }
    
    absl::StatusOr<MemoryTypeVector> GetOutputMemoryTypes(const Scope& root,
                                                          Node* n) {
      MemoryTypeVector input_mtypes, output_mtypes;
      DeviceType device_type("");
      TF_RETURN_IF_ERROR(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/compilability_check_util.cc

          // host memory.
          input_memory_types[i] = tensorflow::HOST_MEMORY;
        }
      }
      return input_memory_types;
    }
    
    tensorflow::MemoryTypeVector GetOutputMemoryTypes(
        const tensorflow::FunctionBody* fbody) {
      tensorflow::MemoryTypeVector output_memory_types(fbody->ret_types.size(),
                                                       tensorflow::DEVICE_MEMORY);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top