Skip to content

Commit a62bdf7

Browse files
Cleanup
1 parent d896bf7 commit a62bdf7

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

src/python/freeze.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#include <drjit/fwd.h>
1212
#include <drjit/traversable_base.h>
1313
#include "listobject.h"
14-
#include "nanobind/nanobind.h"
14+
#include <nanobind/nanobind.h>
1515
#include "object.h"
1616
#include "pyerrors.h"
1717
#include "shape.h"
@@ -120,12 +120,8 @@ static void log_layouts(const std::vector<Layout> &layouts, std::ostream &os,
120120
auto tp_name = layout.type ? nb::type_name(layout.type).c_str() : "None";
121121
os << padding << "type = " << tp_name << std::endl;
122122
os << padding << "num: " << layout.num << std::endl;
123-
// os << padding << "vt: " << (uint32_t) layout.vt << std::endl;
124-
// os << padding << "vs: " << (uint32_t) layout.vs << std::endl;
125123
os << padding << "flats: " << std::bitset<8>(layout.flags) << std::endl;
126-
// os << padding << "literal: " << std::hex << layout.literal << std::endl;
127124
os << padding << "index: " << layout.index << std::endl;
128-
// os << padding << "size_index: " << layout.size_index << std::endl;
129125
os << padding << "py_object: " << nb::str(layout.py_object).c_str()
130126
<< std::endl;
131127

src/python/freeze.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#pragma once
1212

1313
#include "common.h"
14-
#include "drjit/autodiff.h"
14+
#include <drjit/autodiff.h>
1515

1616
#include <tsl/robin_map.h>
1717
#include <tsl/robin_set.h>

0 commit comments

Comments
 (0)